I want to load a dynamic library, but it´s not a php_*.dll. I´ve tried to load, but apperars de sentence: Invalid library(maybe not a PHP library).
Do you know if it´s possible to do it or I have to remake the library like a php library?
Thanks.
You cannot load non-PHP extension modules into PHP. If you need to access something which currently has no support you'll need to write a PHP extension (in C🙂 to access the other libraries. Also, note that the extensions are build-specific. (ie. you can't load an extension built against the 4.0.5 source tree into 4.0.6).
-geoff