?目录
更新软件包:
sudo apt update
升级软件包:
sudo apt upgrade
安装
sudo apt-get install php7.3 php7.3-fpm php7.3-mysql php7.3-redis php7.3-cli php7.3-curl php7.3-json php7.3-mbstring php7.3-opcache php7.3-readline php7.3-xml php7.3-zip ?php7.3-gd php7.3-intl?
除php本身外还有相关的扩展包安装,如需要是8.0,则上述7.3的部分修改对应版本即可。
php -v
会显示版本信息。
编写helloworld验证:
<?php
echo "hello, world!\n";
?>
运行:
# php test.php
hello, world!