Is there any way to call in an external library in linux with php to do different things in php this would be the equivelent of calling in com objects if you where using php on NT. I would like to be able to do something similiar but on linux?? Any suggestions would be great aside from php classes.
include(); ?
If you're talking about .so shared libraries ... as I understand it, you can write a stub interface in C, compile it into PHP, and use dl() to load the shared library. Not trivial.
MM I am not to sure about that only because i dont know c well enough to do that. I have objects that i can use in a windows environment and i have linux build versions but I dont know how to tap into there methods and properties ect... I'll look into the stub interface thing see how hard it would be. Thanks James Whitcomb