今天從新安裝了ubuntu,PHP,MySQL,Apache,到測試CMS項目時發生一個錯誤:php
Fatal error: Uncaught Error: Call to undefined function mb_strlen()apache
2.1 修改php.ini配置文件:ubuntu
;extension=php_mbstring.dll
找到上面的行,並去掉行開頭的分號,來啓用php_mbstring.dll測試
extension=php_mbstring.dll
2.3重啓apache服務:spa
sudo service apache2 restart
2.4 檢查php是否可否加載php_mbstring.dllrest
php -m
若是列表中沒有mbstring,說明php_mbstring組件還沒安裝,須要安裝php_mbstring。code
2.5 安裝php_mbstringblog
sudo apt-get install php-mbstring
2.6 重啓apache服務:get
sudo service apache2 restart