views:

51

answers:

1

I have a C dll containing functions and enumerations I want to make accessible from php. How can I do it?

+2  A: 

You need to write an extension. You do need some C experience but this tutorial is pretty easy to follow.

edit I googled around out of curiosity, apparently you can sort-of dynamically load a dll from php using w32api. I'd still go for the extension ;-)

mvds