At 03:48 PM 11/28/2001 +0100, Lars Knudsen wrote:
>correction:
>
>it seams that using the 'string' from stdlib makes the difference.  If I:
>
>#include <string>
>using namespace std;
>
>... it doesnt work - but only if I *use* the string class.... strange.
>anyone got any Idea why?

Possibly because you're not linking PHP with the C++ library? If you're 
using plain C++ you don't need to but if you're using C++ library functions 
including stuff from namespace std I think you're supposed to link with it.
A good idea would also to do an "nm" on your extension and see if it has 
C++ stuff. Any function which is mangled weirdly is C++.

Andi


-- 
PHP Development Mailing List <http://www.php.net/>
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to