이 기사에서는 Centos7에 최신 버전의 PHP7을 설치하는 방법에 대한 자세한 튜토리얼을 주로 소개합니다. 한 가지 방법은 간단한 설치(yum을 통한)이고, 다른 방법은 컴파일 및 설치입니다. 구체적인 내용은 이 기사를 참조하세요. IT
방법 1. 간단한 설치 (yum을 통해)
1. PHP7
rpm -ivh http://dl.fedoraproject.org/pub/epel/7/x86_64/e/epel-release-7-5.noarch.rpm
설치 방법 2.
1을 컴파일하고 설치합니다. php7
rpm -Uvh https://mirror.webtatic.com/yum/el7/webtatic-release.rpm
2을 압축 해제합니다. 3.php 디렉토리를 입력하세요
yum install php70w4. 종속성 패키지 설치
wget -O php7.tar.gz http://cn2.php.net/get/php-7.1.1.tar.gz/from/this/mirror5. 컴파일 구성 (오류가 발생하는 경우 기본적으로 이전 단계의 종속성 파일이 설치되지 않았기 때문에 발생함)찾으면 번거로우시겠지만, 다음 단계에서 공식 PHP 설치 지침을 참조하세요: http: //php.net/manual/zh/install.unix.nginx.php
tar -xvf php7.tar.gz6 공식 설치
cd php-7.0.47. 환경 변수 구성
# 直接复制下面一行(不包括本行) yum install libxml2 libxml2-devel openssl openssl-devel bzip2 bzip2-devel libcurl libcurl-devel libjpeg libjpeg-devel libpng libpng-devel freetype freetype-devel gmp gmp-devel libmcrypt libmcrypt-devel readline readline-devel libxslt libxslt-devel끝에 추가
./configure \ --prefix=/usr/local/php \ --with-config-file-path=/etc \ --enable-fpm \ --with-fpm-user=nginx \ --with-fpm-group=nginx \ --enable-inline-optimization \ --disable-debug \ --disable-rpath \ --enable-shared \ --enable-soap \ --with-libxml-dir \ --with-xmlrpc \ --with-openssl \ --with-mcrypt \ --with-mhash \ --with-pcre-regex \ --with-sqlite3 \ --with-zlib \ --enable-bcmath \ --with-iconv \ --with-bz2 \ --enable-calendar \ --with-curl \ --with-cdb \ --enable-dom \ --enable-exif \ --enable-fileinfo \ --enable-filter \ --with-pcre-dir \ --enable-ftp \ --with-gd \ --with-openssl-dir \ --with-jpeg-dir \ --with-png-dir \ --with-zlib-dir \ --with-freetype-dir \ --enable-gd-native-ttf \ --enable-gd-jis-conv \ --with-gettext \ --with-gmp \ --with-mhash \ --enable-json \ --enable-mbstring \ --enable-mbregex \ --enable-mbregex-backtrack \ --with-libmbfl \ --with-onig \ --enable-pdo \ --with-mysqli=mysqlnd \ --with-pdo-mysql=mysqlnd \ --with-zlib-dir \ --with-pdo-sqlite \ --with-readline \ --enable-session \ --enable-shmop \ --enable-simplexml \ --enable-sockets \ --enable-sysvmsg \ --enable-sysvsem \ --enable-sysvshm \ --enable-wddx \ --with-libxml-dir \ --with-xsl \ --enable-zip \ --enable-mysqlnd-compression-support \ --with-pear \ --enable-opcache
명령을 실행하여 변경 사항을 즉시 적용하세요
make && make install
8. -fpm
vi /etc/profile9. php-fpm
PATH=$PATH:/usr/local/php/bin export PATH시작
위 내용은 Centos7에 최신 버전의 PHP7을 설치하기 위한 자세한 튜토리얼의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!