- 相關(guān)推薦
PHP 學(xué)習(xí)教程
一:PHP開發(fā)環(huán)境配置:
1)、Apache服務(wù)器搭建:
a、next->localhost、localhost、管理員郵箱、for all Users..
b、測試安裝是否成功:localhost/或127.0.0.1/
c、配置:打開httpd.conf
找到DocumentRoot "C:/programfile/Apache/Apache2/htdocs"這是Apache的默認(rèn)
Web文檔文件夾 ,將其設(shè)置為E:/httproot。
找到將其改成E:/httproot
。
Apache server restart、localhost/,進(jìn)行測試。
找到DirectoryIndex index.html index.html.var在后面加入index.htm index.php
。
保存httpd.conf文件,Apache server配置完成。
2)、PHP安裝:
a、解壓到硬盤上的一個(gè)文件夾內(nèi)如C:PHP,找到php.ini-recommended文件改其名為
php.ini。
b、打開php.ini,找到extension_dir="./"改為extension_dir="E:/PHP/ext"。
c、找到;extension=PHP_gd2.dll
;extension=PHP_mbstring.dll
;extension=PHP_Mysql.dll
;extension=PHP_mysqli.dll
這4行,把前面的;去掉,讓這3行生效,讓PHP支撐MySQL和GD庫等組件。
將libmysql.dll文件復(fù)制到C:windows下面
d、在E:/PHP/創(chuàng)建文件夾session_tmp,找到session.save_path的這一行,設(shè)成
session.save_path="E:/PHP/session_tmp"。這句話是讓產(chǎn)生的session文件都存到自定義
目錄 中。
e、保存php.ini。
3)、Apache Server 使用PHP程序來解釋php腳本:
打開httpd.conf,在最后加入這幾行后保存。
LoadModule php5_module E:/PHP/php5apache2_2.dll
PHPIniDir "E:/PHP/php.ini"
AddType application/x-httpd-PHP .php
測試:
創(chuàng)建phpinfo.php文件,內(nèi)容為
<?php
phpinfo();
?>
瀏覽器中輸入localhost/phpinfo.php運(yùn)行該腳本。
4)、MySQL安裝:
a、Custom->This feature,and all subfeatures,will be installed on local hard
drive,(Developer Components、MySQL Server、Client Programs、
Document)->Install->next->finish
b、Detailed Configuration->Server Machine->Transactional Database
Only->InnoDB Tablespace進(jìn)行配置就是為InnoDB數(shù)據(jù)庫文件選擇存儲(chǔ)空間,可以自定義
->Manual Setting,1000->啟用TCP/IP,默認(rèn)端口3306不變->Manual Selected Default
Character Set/Collation,gbk->全部選擇,next->Modify Security Settings,root密碼
->Execute.
測試:在Windows控制面板中->服務(wù)管理找到MySQL服務(wù),啟動(dòng)。
5)、PEAR安裝:
PEAR:P HP擴(kuò)展與應(yīng)用庫,是尋找并重用優(yōu)秀PHP代碼的最有效方式。
安裝步驟:a、PHP根目錄執(zhí)行g(shù)o-pear.bat
b、enter->all->enter
c、PHP目錄找到PEAR_ENV.reg執(zhí)行,PHP目錄找到pws-php5isapi.reg執(zhí)行。
d、打開cmd,進(jìn)入PHP目錄,輸入pear -V查看是否安裝成功。
常用命令:pear:查看常用命令。
pear list:查看已經(jīng)安裝的PEAR包。
【PHP 學(xué)習(xí)教程】相關(guān)文章:
php高級(jí)教程01-23
PHP入門基礎(chǔ)教程大全10-28
有關(guān)語法和表單的PHP教程08-08
新手如何學(xué)習(xí)PHP語言10-19
學(xué)習(xí)簡單的踢踏舞教程06-17
PHP的壓縮函數(shù)06-21
調(diào)酒教程10-21
如何學(xué)好PHP知識(shí)09-20