加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
pvm 403 Bytes
一键复制 编辑 原始数据 按行查看 历史
Docker 提交于 2020-11-04 16:20 . 111
#!/bin/bash
if [ $1x == "5"x ]; then
systemctl stop php7
systemctl disable php7
systemctl restart php5
systemctl enable php5
elif [ $1x == "7"x ]; then
systemctl stop php5
systemctl disable php5
systemctl restart php7
systemctl enable php7
else
echo -e 'pvm\n 5 PHP使用版本5\n 7 PHP使用版本7'
echo -e 'version\n php5 -v\n php7 -v'
fi
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化