更改

跳转至: 导航搜索

CentOS

添加9字节, 2019年9月12日 (四) 13:39
修改php.ini 解决提示没有安装mbstring的问题解决
# 安装完成后,php -v查看安装的PHP版本,版本号正确,说明PHP安装成功
=修改php.ini 解决提示没有安装mbstring的问题解决解决mbstring扩展异常=
# yum install php-mbstring # 如果是remi,则yum --enablerepo=remi install php-mbstring
# vim /etc/php.ini # 打开mbstring相关的选项。
language for internal character representation.
http://php.net/mbstring.language
mbstring.language = '''Chinese'''
internal/script encoding.
(e.g. SJIS, BIG5, ISO-2022-*)
http://php.net/mbstring.internal-encoding
mbstring.internal_encoding = '''UTF-8'''
http input encoding.
http://php.net/mbstring.http-input
mbstring.http_input = '''auto'''
http output encoding. mb_output_handler must be
http://php.net/mbstring.http-output
mbstring.http_output = '''UTF-8'''
enable automatic encoding translation according to
portable libs/applications.
http://php.net/mbstring.encoding-translation
mbstring.encoding_translation = '''On'''
=CentOS下版本查询及手工修改路径案例=
497
个编辑

导航菜单