I need pass data (in this case just a single id) to a custom dll using php. Can you work directly with a dll in php? Having never worked with a dll before I’m not really sure how it works. Is it similar in nature to a web service or rpc?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Since this is a custom DLL, perhaps you’d consider making a PHP extension?
Alternatively, PHP supports COM. If you can make a COM DLL, you’re in good shape: http://us.php.net/COM
Finally, is it something that can be used with rundll32? If so, you could call it with
exec().