国产激情久久久久影院小草_国产91高跟丝袜_99精品视频99_三级真人片在线观看

PHP 學習教程

時間:2024-06-10 07:21:27 PHP 我要投稿
  • 相關推薦

PHP 學習教程

  一:PHP開發(fā)環(huán)境配置:

PHP 學習教程

  1)、Apache服務器搭建:

  a、next->localhost、localhost、管理員郵箱、for all Users..

  b、測試安裝是否成功:localhost/或127.0.0.1/

  c、配置:打開httpd.conf

   找到DocumentRoot "C:/programfile/Apache/Apache2/htdocs"這是Apache的默認

  Web文檔文件夾  ,將其設置為E:/httproot。

   找到將其改成E:/httproot

  。

   Apache server restart、localhost/,進行測試。

   找到DirectoryIndex index.html index.html.var在后面加入index.htm index.php

  。

   保存httpd.conf文件,Apache server配置完成。

  2)、PHP安裝:

  a、解壓到硬盤上的一個文件夾內如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文件復制到C:windows下面

  d、在E:/PHP/創(chuàng)建文件夾session_tmp,找到session.save_path的這一行,設成

  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文件,內容為

  <?php

  phpinfo();

  ?>

  瀏覽器中輸入localhost/phpinfo.php運行該腳本。

  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進行配置就是為InnoDB數(shù)據(jù)庫文件選擇存儲空間,可以自定義

  ->Manual Setting,1000->啟用TCP/IP,默認端口3306不變->Manual Selected Default

  Character Set/Collation,gbk->全部選擇,next->Modify Security Settings,root密碼

  ->Execute.

  測試:在Windows控制面板中->服務管理找到MySQL服務,啟動。

  5)、PEAR安裝:

  PEAR:P HP擴展與應用庫,是尋找并重用優(yōu)秀PHP代碼的最有效方式。

  安裝步驟:a、PHP根目錄執(zhí)行go-pear.bat

   b、enter->all->enter

   c、PHP目錄找到PEAR_ENV.reg執(zhí)行,PHP目錄找到pws-php5isapi.reg執(zhí)行。

   d、打開cmd,進入PHP目錄,輸入pear -V查看是否安裝成功。

  常用命令:pear:查看常用命令。

   pear list:查看已經(jīng)安裝的PEAR包。


【PHP 學習教程】相關文章:

php高級教程01-23

PHP入門基礎教程大全10-28

有關語法和表單的PHP教程08-08

新手如何學習PHP語言10-19

學習簡單的踢踏舞教程06-17

關于php面試寶典及PHP面試技巧08-16

PHP的壓縮函數(shù)06-21

調酒教程10-21

如何學好PHP知識09-20

 PHP的基礎編程與應用10-16