Heim  >  Artikel  >  php教程  >  Linux下已编译PHP增加扩展so的方法,关键phpize 和config.m4

Linux下已编译PHP增加扩展so的方法,关键phpize 和config.m4

WBOY
WBOYOriginal
2016-06-06 19:49:411699Durchsuche

LINUX下PHP已经编译,如何新增so扩展。 用到的一个sh:/usr/local/php5/bin/phpize 原理:用phpize在压缩包里面找到对应的对应的扩展文件夹,在里面执行phpize,具体步骤: PHP安装路径:/usr/local/php5 PHP源码路径:/home/default7/lamp/php-5.5.13 扩展

LINUX下PHP已经编译,如何新增so扩展。

用到的一个sh:/usr/local/php5/bin/phpize

原理:用phpize在压缩包里面找到对应的对应的扩展文件夹,在里面执行phpize,具体步骤:

PHP安装路径:/usr/local/php5

PHP源码路径:/home/default7/lamp/php-5.5.13

扩展假设zlib:/home/default7/lamp/php-5.5.13/ext/zlib

执行代码:

ln -s /usr/local/php5/bin/phpize /usr/bin/phpize

cd /home/default7/lamp/php-5.5.13/ext/zlib

mv config0.m4 config.m4

phpize

//这里提示报错,安装bz2,bz2-devel

yum install bz2 bz2-devel

./configure --with-php-config=/usr/local/php5/bin/php-config

make

make test

make install

vim /etc/php.ini ##加入extension=bz2.so


(by default7#zbphp.com)




Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn