This article mainly introduces the Linux system environment, PHP installation mbstring expansion of the two methods, we refer to the use of the bar
1. The execution code is as follows: Yum install php-mbstring 2. modifying php.ini (This step is important, some lxadmin versions cannot be modified automatically) the code is as follows: Echo ' extension=mbstring.so ' >>/etc/php.ini #更具php安装目录而定 3. Restart Web Service if it is Apache:service httpd restart Method II: PHP 5.36 installation directory:/usr/local/php code as follows: #cd/usr/src/php-5.3.6/ext /mbstring #/usr/local/php/bin/phpize #./configure--with-php-config=/usr/local/php/bin/php-config #make && Make install echo ' extension=mbstring.so ' >>/usr/local/php/lib/php.ini #/usr/local/apache2/bin/apachectl Restart use/usr/local/php/bin/php-v #查看配置是否错误 use Php.info to see if mbstring installed successfully