Ubuntu php7.0.33 升级 php7.2.24

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Ubuntu php7.0.33 升级 php7.2.24相关的知识,希望对你有一定的参考价值。

An uncaught Exception was encountered

Type: TypeError

Message: Return value of ElasticsearchClientBuilder::buildLoggers() must be an instance of Elasticsearchvoid, none returned

sudo apt-get install python-software-properties
sudo add-apt-repository ppa:ondrej/php
sudo apt-get update
sudo apt-get install -y php7.2

php -v 验证

sudo apt-get install php7.2-fpm
sudo apt-get install php7.2-mbstring
sudo apt-get install php7.2-xml
sudo apt-get install php7.2-dev
sudo apt-get install php7.2-mysql
sudo apt-get install php7.2-sqlite3 php7.2-tidy php7.2-curl

git clone https://github.com/phpredis/phpredis
cd phpredis/
phpize
which php-config7.2
./configure --with-php-config=/usr/bin/php-config7.2
make
make test
sudo make install

修改php.ini
extension=redis.so

修改nginx
#fastcgi_pass 127.0.0.1:9000;
fastcgi_pass unix:/run/php/php7.2-fpm.sock;

以上是关于Ubuntu php7.0.33 升级 php7.2.24的主要内容,如果未能解决你的问题,请参考以下文章

安装特定版本的 mPDF

CentOS7部署LNMP环境

以php中的自增自自减运算符操作(整型,浮点型,字符串型,布尔型,空类型)数据

PHP 不会打开 fifo 进行写入

Ubuntu Apache:“模块 php7 不存在”[关闭]

干货Ubuntu 下php7 mysql5.7 LNMP 环境搭建