发布于 2015-04-20 05:56:35 | 1045 次阅读 | 评论: 0 | 来源: 网友投递
Zend Studio PHP语言集成开发环境
Zend Studio是Zend Technologies公司开发的PHP语言集成开发环境(IDE)。除了有强大的PHP开发支持外也支持HTML、js、CSS,但只对PHP语言提供调试支持。Studio5.5系列后,官方推出了基于Eclipse平台的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