在zend studio 中用Apache提供网络服务而不是用zend sever,怎么设置
我是配置的wamp,在这之前wamp已经配置成功,而且mysql中的数据我也已经弄好,正要开始昨天晚上开始弄zend studio的时候是按照下边这个网址的教程弄的。
http://www.th7.cn/Program/php/201409/286788.shtml
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!
表示环境配置成功
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。