php安装多进程扩展pcntl模块
1、下载php安装包 我本地已经保留了 在目录/usr/local/src/php-5.4.7
下载wget http://br.php.net/get/php-5.4.7.tar.gz/from/this/mirror
解压
2、安装pcntl模块
cd /usr/local/src/php-5.4.7/ext/pcntl
运行: /usr/local/php/bin/phpize
执行完之后 会输出:
Configuring for:
PHP Api Version: 20100412
Zend Module Api No: 20100525
Zend Extension Api No: 220100525
执行完之后 就会生成 configure 文件。
./configure --with-php-config=/usr/local/php/bin/php-config
………………
make
&& make install
…………
3、执行成功 提示 Installing shared extensions: /usr/local/php/lib/php/extensions/no-debug-non-zts-20100525/
echo extension=pcntl.so >> /usr/local/php/etc/php.ini
重启apache
- -但是出错了 phpinfo 没有出现pcntl的扩展。
于是再修改 /usr/local/php/etc/php.ini 的extension=pcntl.so为
extension= /usr/local/php/lib/php/extensions/no-debug-non-zts-20100525/pcntl.so
重启apache 。phpinfo()有了pcntl的扩展
但是在执行php脚本的时候 /usr/local/php/bin/php ./index.php
有警告
PHP Warning: PHP Startup: Unable to load dynamic library ‘.//usr/local/php/lib/php/extensions/no-debug-non-zts-20100525/pcntl.so‘ - .//usr/local/php/lib/php/extensions/no-debug-non-zts-20100525/pcntl.so: cannot open shared object file: No such file or directory in Unknown on line 0
哪里来的.//usr/local/php/lib/php/extensions/ 前面多个../
看到phpinfo()生成信息extension_dir =‘./‘
找到php.ini文件里extension_dir=‘./‘去掉./
改为extension_dir=‘‘
重启apache 一切ok!
本文出自 “pygsspy” 博客,请务必保留此出处http://pygsspy.blog.51cto.com/7078055/1368788
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。