1.將Zend Studio工做空間目錄切換到wamp的web目錄下 wamp的web目錄爲D:/wamp/www 在Zend Studio點擊File-Switch Workspace-other 彈出Workspace Launcher對話框 點擊Brower找到D:/wamp/www點擊肯定 若是不切換目錄,會出現找不到dummy.php的警告
Warning: chdir(): No such file or directory (errno 2) in C:/Users/用戶名/AppData/Local/Temp/dummy.php on line 1
這是由於Zend Studio僅僅能編輯和編譯,運行的時候須要服務器(默認是Zend Server),這裏用WampServer中的Apache服務器代替足夠了 2.新建本地PHP項目,編輯PHP文件 File-->New-->Other 展開PHP,選擇Local PHP Project點Next, 在Project Name中輸入項目名,點擊finish 編輯項目中自動生成的index.php
<html><body><?phpecho "Hello World!";?></body></html>
右鍵點擊index.php-->Run As-->PHP Web Application 這是會打開內置的瀏覽器 http://localhost/項目名/index.php 頁面顯示 Hello World! 表示環境配置成功