PHP版本升级

作者: 忆明人 | 来源:发表于2019-07-02 17:48 被阅读0次

参考链接 https://www.cnblogs.com/cxscode/p/7400452.html

更改 服务器  /etc/init.d/php-fpm  --prefix 指定php文件路径

更改 环境变量

./configure --prefix=/usr/local/php7.2.9 \

--with-curl \

--with-freetype-dir \

--with-gd \

--with-gettext \

--with-iconv-dir \

--with-kerberos \

--with-libdir=lib64 \

--with-libxml-dir \

--with-mysqli \

--with-openssl \

--with-pcre-regex \

--with-pdo-mysql \

--with-pdo-sqlite \

--with-pear \

--with-png-dir \

--with-xmlrpc \

--with-xsl \

--with-zlib \

--enable-fpm \

--enable-bcmath \

--enable-libxml \

--enable-inline-optimization \

--enable-gd-native-ttf \

--enable-mbregex \

--enable-mbstring \

--enable-opcache \

--enable-pcntl \

--enable-shmop \

--enable-soap \

--enable-sockets \

--enable-sysvsem \

--enable-xml \

--enable-zip

安装常见错误 地址参考 : https://blog.csdn.net/a1779078902/article/details/82502145

解决 服务器php-cli下 加载配置文件问题 profile文件夹下 添加 

 # php.ini加载

export PATH="/usr/local/php-7.1.16/bin:$PATH"

参考:https://www.wandouip.com/t5i213279/

查看php加载ini配置  php -i | grep php.ini

相关文章

网友评论

    本文标题:PHP版本升级

    本文链接:https://www.haomeiwen.com/subject/cypthctx.html