查看PHP 版本
php -v
查看已安装全部php软件包
rpm -qa|grep php
结果如下(每个人安装版本显示不一样):
php-cli-5.4.16-48.el7.x86_64 php-pear-1.9.4-22.el7.noarch php-mbstring-5.4.16-48.el7.x86_64 php-common-5.4.16-48.el7.x86_64 php-process-5.4.16-48.el7.x86_64 php-pdo-5.4.16-48.el7.x86_64 php-imap-5.4.16-9.el7.x86_64 php-gd-5.4.16-48.el7.x86_64 php-mysql-5.4.16-48.el7.x86_64 php-5.4.16-48.el7.x86_64 php-ldap-5.4.16-48.el7.x86_64 php-xml-5.4.16-48.el7.x86_64 php-xmlrpc-5.4.16-48.el7.x86_64
注意卸载要先卸载没有依赖的
然后在一个一个卸载
rpm -e php-cli-5.4.16-48.el7.x86_64 rpm -e php-pear-1.9.4-22.el7.noarch rpm -e php-mbstring-5.4.16-48.el7.x86_64 rpm -e php-common-5.4.16-48.el7.x86_64 rpm -e php-process-5.4.16-48.el7.x86_64 rpm -e php-pdo-5.4.16-48.el7.x86_64 rpm -e php-imap-5.4.16-9.el7.x86_64 rpm -e php-gd-5.4.16-48.el7.x86_64 rpm -e php-mysql-5.4.16-48.el7.x86_64 rpm -e php-5.4.16-48.el7.x86_64 rpm -e php-ldap-5.4.16-48.el7.x86_64 rpm -e php-xml-5.4.16-48.el7.x86_64 rpm -e php-xmlrpc-5.4.16-48.el7.x86_64
卸载完成后再查看PHP版本:php -v 已经没有提示。卸载完成