我是配置的wamp,在这之前wamp已经配置成功,而且mysql中的数据我也已经弄好,正要开始昨天晚上开始弄zend studio的时候是按照下边这个网址的教程弄的。
关于zend debugger的说明,从Zend Studio 10开始,zend debugger不再单独提供了,而是集成在Zend Studio里面了,并且开始支持php5.3、php5.4、php5.5了,zend debugger所在目录(注意自己机器的对应情况)
D:/Program Files/Zend/Zend Studio 10.6.2/plugins/com.zend.php.debug.debugger.win32.x86_10.6.2.v20140605-0147/resources
在这个目录下有三个文件夹
php53、php54、php55分别对应三个版本的debuger,Zend Studio默认使用的是php55,可以直接用,不需要配置了
二、配置运行篇
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!
表示环境配置成功