Maison > Article > développement back-end > Exemple d'installation en un clic de php7 à l'aide d'un script shell
L'éditeur suivant vous présentera un exemple d'installation en un clic de php7 à l'aide d'un script shell (recommandé). L'éditeur le trouve plutôt bon, je vais donc le partager avec vous maintenant et le donner comme référence pour tout le monde. Suivons l'éditeur et jetons un œil
comme suit :
#!/bin/bash php_gz_file='/home/php/Downloads/source/php-7.0.0.tar.bz2' tar_dir='/home/php/Downloads/dst/' source_dir='php-7.0.0' cd $tar_dir rm -rf $source_dir echo '===start tar php ========' tar -jxvf $php_gz_file > /dev/null echo '===end tar php =======' cd $source_dir echo '===echo start configure php======= ' ./configure --prefix=/usr/local/php7 \ --with-config-file-path=/usr/local/php7/etc \ --with-config-file-scan-dir=/usr/local/php7/etc/conf.d \ --enable-fpm \ --enable-opcache \ --with-apxs2=/usr/local/apache/bin/apxs \ --with-curl \ --with-mysqli=mysqlnd \ --with-pdo-mysql=mysqlnd \ --enable-session \ --enable-mbstring \ --enable-sockets \ --with-gd \ --with-iconv \ --with-openssl \ --enable-soap \ > /dev/null echo ' ===end configrue php===== ' echo '=== start make ==== ' make > /dev/null echo '==end make test' if [ $? -eq 0 ] then echo '===start make install===' make install > /dev/null echo '===end make install===' fi is_finsh_install=$? if [ $is_finsh_install -eq 0 ] then echo '===start make test====' make test > /dev/null echo '===end make test=====' cp php.ini-production /usr/local/php7/etc/php.ini cp sapi/fpm/init.d.php-fpm /etc/init.d/php7-fpm chmod +x /etc/init.d/php7-fpm cp /usr/local/php7/etc/php-fpm.conf.default /usr/local/php7/etc/php-fpm.conf cp /usr/local/php7/etc/php-fpm.d/www.conf.default /usr/local/php7/etc/php-fpm.d/www.conf fi echo done.....
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!