PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!
I am trying to use a DLL file for some back-end stuff (encyprtion, token passing, etc) in a PHP script. There are functions that would save alot of time if I didn't have to write in PHP and just use the DLL file. I have not been able to find anyway to do this and have not seen any exmaples of this. Is anyone familiar with using DLL in PHP or any ideas on how that would be possible. Any feedback would be appreciated.
Personally, I'd write a custom extension for php if you can, that can load and process your DLL.. but probably by the time you figure that out, you can have written all the DLL code in PHP.. so, meh.
someone recommended writing a wrapper in C, but I am not sure how to do that. Anyone have any ideas on what that means? I haven't checked out w32api or FFI extension. Thanks