Maison > Article > développement back-end > Comment désinstaller php
Si vous souhaitez désinstaller PHP proprement, vous pouvez directement utiliser yum Remove php pour désinstaller proprement. Vous pouvez d'abord vérifier le répertoire des packages RPM installés, puis les désinstaller un par un dans l'ordre.
Recommandations associées : "Tutoriel PHP"
1. Tout d'abord, vérifiez tous les packages RPM liés à PHP installés sur la machine.
[root@localhost nginx]# rpm -qa | grep php php55-php-pecl-zip-1.15.1-1.el7.remi.x86_64 php55-php-gd-5.5.38-7.el7.remi.x86_64 php55-runtime-2.1-5.el7.remi.x86_64 php55-2.1-5.el7.remi.x86_64 php55-php-pecl-jsonc-1.3.10-1.el7.remi.x86_64 php55-php-xml-5.5.38-7.el7.remi.x86_64 php55-php-5.5.38-7.el7.remi.x86_64 php55-php-common-5.5.38-7.el7.remi.x86_64 php55-php-process-5.5.38-7.el7.remi.x86_64 php55-php-mbstring-5.5.38-7.el7.remi.x86_64 php55-php-pear-1.10.5-2.el7.remi.noarch php55-php-cli-5.5.38-7.el7.remi.x86_64
2. Supprimer dans l'ordre des dépendances.
rpm -e php55-php-pecl-zip-1.15.1-1.el7.remi.x86_64 rpm -e php55-php-gd-5.5.38-7.el7.remi.x86_64 rpm -e php55-runtime-2.1-5.el7.remi.x86_64 rpm -e php55-2.1-5.el7.remi.x86_64 rpm -e php55-php-pecl-jsonc-1.3.10-1.el7.remi.x86_64 rpm -e php55-php-xml-5.5.38-7.el7.remi.x86_64 rpm -e php55-php-5.5.38-7.el7.remi.x86_64 rpm -e php55-php-common-5.5.38-7.el7.remi.x86_64 rpm -e php55-php-process-5.5.38-7.el7.remi.x86_64 rpm -e php55-php-mbstring-5.5.38-7.el7.remi.x86_64 rpm -e php55-php-pear-1.10.5-2.el7.remi.noarch rpm -e php55-php-cli-5.5.38-7.el7.remi.x86_64
Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!