Windows下编译php扩展的注意事项
环境和需要:
vs2010
php源码:php-5.6.32
php安装目录(非源码,lnmp里的php)
步骤:
1、php源码里ext目录里面的有
ext_skel_win32.php这个文件,打开可以看到注释:Make sure you have CygWin installed
于是要安装CygWin,我去官网下载,然后参照这篇
文章步骤下载:
http://blog.csdn.net/yupu56/article/details/53186410
否则会提示错误:Warning: fopen(myhello/myhello.dsp): failed to open stream: No such file or directory in D:\cygwin\php-5.2.6\ext\ext_skel_win32.php on line 45 Warning: fopen(myhello/myhello.php): failed to open stream: No such file or directory in D:\cygwin\php-5.2.6\ext\ext_skel_win32.php on line 52
此后,在ext_skel_win32.php里更改cygwin的安装目录,
接下来,在cmd中php源码里的ext目录里输入php ext_skel_win32.php --extname=myext,
此时应该没有错误,提示:
$ php ./ext_skel_win32.php --extname=myfunc --proto=myfunc.defCreating directory myfuncawk: /cygdrive/c/wamp/bin/php/php5.5.12/ext/skeleton/create_stubs:56: wscape sequence `\|' treated as plain `|'Creating basic files: config.m4 config.w32 svnignore myfunc.c php_myfuITS EXPERIMENTAL tests/001.phpt myfunc.php [done].
他会在php源码的ext目录创建了myext目录,使用vs2010打开里面的myext.dsp,将编译模式改为Release模式,编译,发现错误缺少config.w32.h,可以在网上找,也可以自己写,内容为:
#define SIZEOF_LONG 4
#define PHP_COMPILER_ID "VC11"
注意,PHP_COMPILER_ID一定要跟你的php编译ID一致,否则后面会出现warning无法使用扩展。
然后,继续编译,提示少了php5ts.lib,资料上说是在php的安装目录(lnmp下的php)里的dev有,但是我的只是php5.lib,于是,我改了一下名字,改成php5ts.lib,发现编译通过。
然后我将源代码根目录里的Release_TS里的.dll文件复制到php安装目录里的ext文件里面,运行,出现了
unable to initialize module module compiled with build ID=API20131226,TS,VC11 PHPcompiled with build ID=API20131226,NTS,VC11这样的错误,找了一些资料,https://blog.526net.com/?p=2950,将vs2010里面的项目属性->C/C++->预处理器->预处理器定义 编辑这一项 找到 ZTS=1 删掉 就是 nts 了。改动,然后重启nginx和php,运行没有问题。
参考文章:
https://blog.526net.com/?p=2950
http://blog.csdn.net/evkj2013/article/details/53485811
http://blog.csdn.net/yupu56/article/details/53186410