php官網 www.php.net
當前主流版本為5.6/7.1
安裝過程
1.#cd /usr/local/src
#wget
#tar xzvf php-5.6.36.tar.gz
3.進入原始碼包目錄進行配置
# cd php-5.6.36
#./configure --prefix=/usr/local/php --with-apxs2=/usr/local/apache2/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
這裡說一下 apxs是apache的工具,能自動幫我們把擴充套件模組放到apache的module目錄裡,並且在配置檔案裡加上一行loadmodule到配置檔案中
出現錯誤,一般是缺少庫檔案,通常是-devel結尾的包,這裡缺少xml2庫,yum安裝
再次配置,又出現錯誤,缺少evp庫
再次配置,又出現錯誤
繼續配置,err
繼續配置,err
繼續配置,err
繼續配置,成功
4.複製配置檔案
# cp php.ini-production /usr/local/php/etc/php.ini
production是指生產環境,development是指開發環境
檢視php的配置資訊
# /usr/local/php/bin/php -i| less
檢視載入的模組
php不需要啟動,php作為apache的模組存在
php5模組位置/usr/local/apache2/modules/libphp5.so
apache的配置檔案
模組隨用隨取,去掉#,取消注釋即可
1. #cd /usr/local/src
2.#wget
# tar xzvf php-7.1.18.tar.gz
3.#cd php-7.1.18
#./configure --prefix=/usr/local/php7 --with-apxs2=/usr/local/apache2/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
4.make && make install
週報 3月25日 29日
週報 支浩宇3月25日 29日 這星期我的網路情況比之前好了很多,每天斷網的次數控制在5次以內,而且斷了之後一般可以較快連上。經過這個月以來的反覆斷網,我已經培養出了敏銳的觀察力,知道斷網的徵兆有哪些,如何應對。例如今天中午,在趕著提交檔案的時候,滑鼠一下子變成 忙 的形狀,我看到滑鼠的形狀,在0....
7月19日任務
20.27 分發系統介紹 20.28 expect指令碼遠端登入 20.29 expect指令碼遠端執行命令 20.30 expect指令碼傳遞引數 expect也是一種指令碼語言 實現自動互動功能的套件 和shell類似,實現傳輸檔案和遠端執行命令的功能,無需輸入密碼 如何發布上線 即把開發寫的 ...
10月25日培訓日記
今天覆習了一下阿捷去年的css講課資料,講解了xhtml的一些基本語法。我想到了以後可以參照這個例子來講解css的盒模型。pppppp 問題 width和height是否包含margin的空間呢?通過修改css的屬性,再重新整理瀏覽器,立即看到修改後的效果。為達到最佳演示效果,調整瀏覽器視窗大小,讓...