Php 7.x 的不同版本

Different version of Php 7.x

我的 laravel 宅基地上有不同版本的 Php。如果我在命令 bash 上午餐 php -v 我有活动的 php 7.3 但是如果我用 phpinfo() 创建和 index.php 我有这个 'PHP Version 7.2.14-1+ubuntu18.04.1+deb.sury.org+1'

php -v

HP 7.3.1-1+ubuntu18.04.1+deb.sury.org+1 (cli) (built: Jan 13 2019 10:19:33) ( NTS ) Copyright (c) 1997-2018 The PHP Group Zend Engine v3.3.1, Copyright (c) 1998-2018 Zend Technologies with Zend OPcache v7.3.1-1+ubuntu18.04.1+deb.sury.org+1, Copyright (c) 1999-2018, by Zend Technologies with Xdebug v2.7.0beta1, Copyright (c) 2002-2018, by Derick Rethans with blackfire v1.24.2~linux-x64-non_zts73, https://blackfire.io, by Blackfire

在我的 index.php

phpinfo();

我有

PHP Version 7.2.14-1+ubuntu18.04.1+deb.sury.org+1

我只想使用php 7.3 我该怎么做?

对于 ubuntu 用户,这应该有效(使用 apache)

sudo a2dismod php7.X
sudo a2enmod php7.3
sudo service apache2 restart

Witn nginx 在你的 .conf 中更改 fastcgi 的版本

fastcgi_pass unix:/run/php/php7.3-fpm.sock;
service nginx restart