通过php调用dll
我需要使用 PHP 调用返回字符串的 dll。
实现这一目标的最佳方法是什么?
I need to call a dll that returns a string using PHP.
What would be the best possible way to achieve this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
构建一个包装 DLL 的 PHP 扩展,或创建一个可以通过 shell 使用 exec 访问的包装器(以任何语言) 。
Build a PHP extension that wraps the DLL or create a wrapper (in any language) that can be accessed via shell with exec.
使用本机 PHP 是不可能实现这一点的。
我会考虑使用
exec()
运行操作系统级函数来执行此操作,例如rundll.exe
(对于某些类型的 DLL)。如果 rundll 无法做到这一点(它与托管和非托管 DLL 有关,我不知道这意味着什么),最简单的方法可能是编写一个包装应用程序来导入 DLL、执行必要的操作并输出结果。
This is not possible using native PHP.
I would look into running an operating system level function to do this using
exec()
, like for examplerundll.exe
(for some kinds of DLLs).If rundll can't do it (it has something to do with managed and unmanaged DLLs, I don't know what that means), the easiest way may be writing a wrapper application that imports the DLL, performs the necessary actions, and outputs the result.