[toc]php
擴展: php中mysql,mysqli,mysqlnd,pdo究竟是什麼 http://blog.csdn.net/u013785951/article/details/60876816 查看編譯參數 http://ask.apelearn.com/question/1295mysql
[root@xavi ~]# cd /usr/local/src/ [root@xavi src]# wget http://cn2.php.net/distributions/php-5.6.30.tar [root@xavi src]# tar -xjf php-5.6.30.tar.bz2
這個路徑解壓處理雖然不報錯,可是沒有解壓過程,echo查看不報錯。==--由於這裏沒有-v==sql
[root@xavi src]# cd php-5.6.30/ [root@xavi php-5.6.30]# ./configure\ --prefix=/usr/local/php\ --with-apxs2=/usr/local/apache2.4/bin/apxs\ --with-config-file-path=/usr/local/php/etc\ --with-mysql=/usr/local/mysql\ --with-pdo-mysql=/usr/local/mysql\ --with-mysqli=/usr/local/mysql/bin/mysql_config \--with-libxml-dir --with-gd\ --with-jpeg-dir --with-png-dir\ --with-freetype-dir --with-iconv-dir\ --with-zlib-dir --with-bz2 --with-openssl\ --with-mcrypt --enable-soap\ --enable-gd-native-ttf --enable-mbstring\ --enable-sockets --enable-exif
–prefix=/usr/local/php 指定的安裝目錄; –with-apxs2=/usr/local/apache2.4/bin/apxs 該文件是Apache的一個工具,自動將PHP擴展模塊添加到Httpd的module目錄文件; 這就是說PHP將會以一個模塊的形式和httpd幾個在一塊兒 –with-config-file-path=/usr/local/php/etc 指定配置文件所在路徑; –with-mysql=/usr/local/mysql 指定mysql的路徑; –with-mysqli=/usr/local/mysql/bin/mysql_config –with-pdo-mysql=/usr/local/mysql –with-mysqli=/usr/local/mysql/bin/mysql_config 上面兩項參數是指定相關mysql庫 –with-libxml-dir –with-gd –with-jpeg-dir –with-png-dir –with-freetype-dir –with-iconv-dir –with-zlib-dir –with-bz2 –with-openssl –with-mcrypt –enable-soap –enable-gd-native-ttf –enable-mbstring –enable-sockets –enable-exif 以上參數是指定PHP相關的一些模塊(通用)。
[root@xavi php-5.6.30]# echo $? 1 [root@xavi php-5.6.30]# yum list |grep OpenSSL
這裏注意大小寫問題 -iapache
[root@xavi php-5.6.30]# yum list |grep -i OpenSSL
[root@xavi php-5.6.30]# yum install -y openssl-devel
繼續輸入./configure 配置內容json
configure: error: Please reinstall the BZip2 distribution [root@xavi php-5.6.30]# yum install -y bzip2-devel
[root@xavi php-5.6.30]# yum install -y libjpeg-devel
繼續輸入./configure 配置內容vim
[root@xavi php-5.6.30]# yum install -y libpng-devel
[root@xavi php-5.6.30]# yum install -y freetype-develsession
由於mcrypt.h這個庫在epel-release這個擴展源裏面php7
[root@xavi php-5.6.30]# yum install epel-release
[root@xavi php-5.6.30]# yum install -y libmcrypt-devel
顯示配置成功 less
[root@xavi php-5.6.30]# ls /usr/local/php bin etc include lib php [root@xavi php-5.6.30]# ls /usr/local/php/bin/ pear peardev pecl phar phar.phar php php-cgi php-config phpize
[root@xavi php-5.6.30]# du -sh /usr/local/php/bin/php 36M /usr/local/php/bin/php [root@xavi php-5.6.30]# du -sh /usr/local/apache2.4/modules/libphp5.so 37M /usr/local/apache2.4/modules/libphp5.so
[root@xavi php-5.6.30]# /usr/local/php/bin/php -m [PHP Modules] bz2 Core ctype date dom ereg exif fileinfo filter gd hash iconv json libxml mbstring mcrypt mysql mysqli openssl pcre PDO pdo_mysql pdo_sqlite Phar posix Reflection session SimpleXML soap sockets SPL sqlite3 standard tokenizer xml xmlreader xmlwriter zlib [Zend Modules]
[root@xavi php-5.6.30]# /usr/local/apache2.4/bin/httpd -M AH00558: httpd: Could not reliably determine the server's fully qualified domain name, using fe80::1d7a:ffe8:8235:a2a5. Set the 'ServerName' directive globally to suppress this message Loaded Modules: core_module (static) so_module (static) http_module (static) mpm_event_module (static) authn_file_module (shared) authn_core_module (shared) authz_host_module (shared) authz_groupfile_module (shared) authz_user_module (shared) authz_core_module (shared) access_compat_module (shared) auth_basic_module (shared) reqtimeout_module (shared) filter_module (shared) mime_module (shared) log_config_module (shared) env_module (shared) headers_module (shared) setenvif_module (shared) version_module (shared) unixd_module (shared) status_module (shared) autoindex_module (shared) dir_module (shared) alias_module (shared) php5_module (shared)
[root@xavi php-5.6.30]# ls -l /usr/local/apache2.4/modules/libphp5.so -rwxr-xr-x 1 root root 37752768 3月 2 13:02 /usr/local/apache2.4/modules/libphp
[root@xavi php-5.6.30]# vim /usr/local/apache2.4/conf/httpd.conf
裏面有不少被#註解的LoadMoudle,須要使用時可將註釋去掉.dom
php的參考配置文件 php.ini-production 生產環境用 php.ini-development 開發環境和測試環境下用
[root@xavi php-5.6.30]# /usr/local/php/bin/php -i |less
[root@xavi php-5.6.30]# ls /usr/local/php/etc pear.conf
拷貝過來
[root@xavi php-5.6.30]# cp php.ini-production /usr/local/php/etc/php.ini
[root@xavi php-5.6.30]# cd .. [root@xavi src]# wget http://cn2.php.net/distributions/php-7.1.6.tar.bz2
不加V的話不顯示解壓過程.
安裝PHP-7
由於在安裝PHP5的時候全部依賴的庫文件以及安裝完,因此這次PHP7能夠直接安裝。
[root@xavi src]# cd php-7.1.6
[root@xavi php-7.1.6]# ./configure --prefix=/usr/local/php7 --with-apxs2=/usr/local/apache2.4/bin/apxs --with-config-file-path=/usr/local/php7/etc --with-pdo-mysql=/usr/local/mysql --with-mysqli=/usr/local/mysql/bin/mysql_config --with-libxml-dir --with-gd --with-jpeg-dir --with-png-dir --with-freetype-dir --with-iconv-dir --with-zlib-dir --with-bz2 --with-openssl --with-mcrypt --enable-soap --enable-gd-native-ttf --enable-mbstring --enable-sockets --enable-exif
注:次數與PHP-5的主要差別就是沒有「--with-mysql」選項而是with-mysqli.
[root@xavi php-7.1.6]# ls /usr/local/apache2.4/modules/libphp7.so /usr/local/apache2.4/modules/libphp7.so [root@xavi php-7.1.6]# du -sh !$ du -sh /usr/local/apache2.4/modules/libphp7.so 37M /usr/local/apache2.4/modules/libphp7.so
[root@xavi php-7.1.6]# /usr/local/php7/bin/php -m [PHP Modules] bz2 Core ctype date dom exif fileinfo filter gd hash iconv json libxml mbstring mcrypt mysqli openssl pcre PDO pdo_mysql pdo_sqlite Phar posix Reflection session SimpleXML soap sockets SPL sqlite3 standard tokenizer xml xmlreader xmlwriter zlib [Zend Modules]
[root@xavi php-7.1.6]# /usr/local/apache2.4/bin/apachectl -M AH00558: httpd: Could not reliably determine the server's fully qualified domain name, using fe80::1d7a:ffe8:8235:a2a5. Set the 'ServerName' directive globally to suppress this message Loaded Modules: core_module (static) so_module (static) . . . php5_module (shared) php7_module (shared)
[root@xavi php-7.1.6]# vim /usr/local/apache2.4/conf/httpd.conf