通过php调用dll

发布于 2024-10-06 14:24:10 字数 50 浏览 2 评论 0原文

我需要使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

瑾夏年华 2024-10-13 14:24:10

构建一个包装 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.

拥抱没勇气 2024-10-13 14:24:10

使用本机 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 example rundll.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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文