如何将适用于 Windows 的 PHP 5.3 扩展编译为 DLL?

发布于 2024-07-26 19:33:25 字数 781 浏览 3 评论 0原文

我目前正在重写最初为 PHP 4.2.2 编写的 PHP 扩展。 我的问题是让构建/编译过程生成 .dll 而不是将扩展编译到 PHP 核心中。 环境是windows server 2003。我使用的是Visual Studio 2008。

我使用EXT_SKEL脚本生成框架,并且我可以成功地将扩展编译到php核心中。 我正在尝试将其编译为 .dll,以便我可以轻松地将其分发给我的客户。 谁能告诉我正确的方向,如何告诉 PHP 5.3 构建过程,我想将我的扩展编译为 .dll 而不是静态地编译为 PHP 本身?

要构建扩展的框架,我运行:

  1. php.exe ext_skel_win32.php --extname=myextension --proto=myprototypefile.dat
  2. 修改 config.w32 以取消注释“ARG_ENABLE”行并默认启用
  3. buildconf.bat
  4. cscript /nologo configure.js
  5. nmake

我确认我可以从 PHP 中运行扩展的方法,但是它不会生成可分发的.dll。 相反,它将方法编译成 PHP 二进制文件。 有人能指出我正确的方向吗?

I'm currently rewriting a PHP Extension that was originally written for PHP 4.2.2. My issue is having the build/compile process generate a .dll instead of compiling the extension into the PHP core. The environment is windows server 2003. I'm using Visual Studio 2008.

I used the EXT_SKEL script to generate the framework, and I can succesfully compile the extension into the php core. I'm trying to instead compile it as a .dll so I can easily distribute it to my clients. Can anyone point me in the right direction for how to tell the PHP 5.3 build process that i'd like to compile my extension as a .dll instead of staticly into PHP itself?

To build the extension's framework I run:

  1. php.exe ext_skel_win32.php --extname=myextension --proto=myprototypefile.dat
  2. Modified config.w32 to uncomment the 'ARG_ENABLE' line and make the default enabled
  3. buildconf.bat
  4. cscript /nologo configure.js
  5. nmake

I confirm that I can run the extension's methods from within PHP, however it does not produce a distributable .dll. instead it compiles the methods into the PHP binary. Can anyone point me in the right direction?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

心房敞 2024-08-02 19:33:25

尝试

configure.js --enable-myextension=shared

编辑:也可能是

configure.js --with-myextension=shared

Try

configure.js --enable-myextension=shared

edit: might also be

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