Hi all
I am working with php on linux.
I want to create dynamic library and use it in php.
For example:
I have to built this
#include <iostream.h>
char* aa(){
return "true";
}I succeed to compile this into a dynamic library x.so. When I try to call this from php I get Cannot load x.so. may be not a php library. Can you help me please.
-- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

