linux 给php添加扩展

来源:互联网 发布:他改变了中国 知乎截图 编辑:程序博客网 时间:2024/05/16 03:10
cd /usr/src/php-5.3.6/ext/mbstring
/usr/local/php/bin/phpize

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

(如果说找不到php-config,请find / -name  php-config)

make && make install
echo ‘extension=mbstring.so' >>/usr/local/php/lib/php.ini
service httpd restart
0 0