Heim >php教程 >php手册 >php扩展安装mbstring

php扩展安装mbstring

WBOY
WBOYOriginal
2016-06-06 19:58:241126Durchsuche

linux系统下扩展安装mbstring 1. 进入php的源码包的ext/mbstring目录 $ cd /home/php/ext/mbstring 2. 运行php安装目录下的phpize $ /usr/local/lib/php/bin/phpize 3. 在mbstring目录下编译mbstring $ ./configure --with-php-config=/usr/local/bin/php-co

linux系统下扩展安装mbstring

1. 进入php的源码包的ext/mbstring目录

$ cd /home/php/ext/mbstring

2. 运行php安装目录下的phpize

$ /usr/local/lib/php/bin/phpize

3. 在mbstring目录下编译mbstring

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

将编译好的mbstring.so文件拷贝到php的扩展文件夹中

4.编辑php.ini,在php.ini中添加

extension_dir=/usr/lib/php/modules,如果php.ini中指定了extension_dir,则不用在指定

extension=mbstring.so

5.重启apache

$ service httpd restart


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