我正在尝试在 ubuntu 18.04 上将 php7.3.13 更新到 7.3.17
我已经做好了
apt-get update
apt-get install php7.3
它说 7.3.17 包已解压,但重新启动 apache 后,我仍然在 phpinfo 和 php-v 中得到 7.3.13。
尝试 apt show -a php7.3 | grep Version 给出版本:7.3.17-1+ubuntu18.04.1+deb.sury.org+1
apt-get install php7.3=7.3.17-1+ubuntu18.04.1+deb.sury.org+1
给出的php7.3已经是最新版本(7.3.17-1+ubuntu18.04.1+deb.sury.org+1)。
但 php -v 和 phpinfo 仍然显示版本是 .13
缺什么?