netbeans php安裝、調試

文件清單

  jdk-8u45-windows-i586_8.0.450.14.1429092020.exephp

  netbeans-8.0.2-php-windows.exehtml

  wampserver2.5-Apache-2.4.9-Mysql-5.6.17-php5.5.12-32b.exejava

步驟

  1.安裝jdk環境,,安裝成功後,配置環境變量。sql

以1.6.0_26爲例

java_home的變量值爲 C:\Program Files\Java\jdk1.6.0_26

classpath的變量值爲 .;C:\Program Files\Java\jdk1.6.0_26\lib\dt.jar,C:\Program Files\Java\jdk1.6.0_26\lib\tools.jar      (注意前面兩個標點  .;  不要遺漏了)

在path的變量值的最後面添加下面兩個路徑 ;C:\Program Files\Java\jdk1.6.0_26\bin;C:\Program Files\Java\jdk1.6.0_26\jre\bin          (注意前面有個符號;  )  

  2.安裝成功後在命令行鍵入Java,Javac,有命令行幫助信息顯示,就說明安裝成功。apache

  3.安裝netbeans,直接下一步便可。windows

  4.安裝wamp集成環境。安裝完畢後,在右下角WampServer圖標中點開php,打開php.ini。 文件跳轉到最後,能夠看到 xdebug.remote_enable = off,將其改成  xdebug.remote_enable = on,即開啓遠程調試,調試端口默認爲9000.服務器

  5.使用netbeans新建php項目,項目建立目錄在wamp\www目錄下,假定目錄爲 wamp\www\demo1。在netbeans中選中項目,右擊設置配置 =》 定製,將項目url設置爲 http://localhost/demo1/, 索引文件 index.php。this

  6.編輯index.php文件url

<!DOCTYPE html>
<!--
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
-->
<html>
    <head>
        <meta charset="UTF-8">
        <title></title>
    </head>
    <body>
        <?php 
        // echo phpinfo();
         $a = 1;
         $b = 2;
         $c = $a + $b ;
         echo $a,"+",$b,"=",$c;
        ?>
    </body>
</html>

  6.在首行打斷點,點擊調試按鈕,便可進入單步調試。spa

 備註

  1.經過apache服務圖標打開的php.ini,是位於apache/bin/php.ini文件,配置屬於apache服務器,若是是使用IIS進行調試,那麼必須打開wamp/bin/php/php-xx/php.ini,進行xdebug配置。

  2.IIS運行php站點,只須要添加一個處理程序映射就能夠了。

                  

相關文章
相關標籤/搜索