PHP —— Eclipse for php 环境搭建

Eclipse for PHP+XAMPP调试配置

http://www.jianshu.com/p/5d524d986fd4


修改根目录
http://www.jianshu.com/p/6644ed2b61f6

XAMPP集成了PHP开发环境所需要的Apache和Mysql等基础组件。但是系统自带的根目录为 /Applications/XAMPP/htdocs 。有时候我们希望把网站根目录换成我们自定义的目录文件夹。可通过以下方式来实现
  • 1 打开 应用程序->XAMPP->xamppfiles->etc->httpd.conf 文档
  • commond+f搜索htdocs,搜到如下结果
# DocumentRoot: The directory out of which you will serve your # documents. By default, all requests are taken from this directory, but # symbolic links and aliases may be used to point to other locations. # DocumentRoot "/Applications/XAMPP/xamppfiles/htdocs"
  • 3 修改DocumentRoot和Directory中的路径为你想要的路径,两个的路径要一样
在Mac中有些文件夹是只对本机用户有读写权限,如果是服务器去访问这样的文件夹的话会显示forbid。解决方法如下:
  • commond + f搜索User/Group,搜到如下结果
# User/ Group : The name ( or #number) of the user/ group to run httpd as .# It is usually good practice to create a dedicated user and group for # running httpd, as with most system services.#User daemon Group daemon
修改 User 为你的用户名。以此来获取读写权限



自己设置步骤:
1- 设置好程序根目录;

2- 设置好eclipse Servers 和 Executables

3- 编写代码 http://localhost/myPHP/index.php 即可执行 run as php web page



sudo apachectl stop
sudo apachectl start
sudo apachectl restart

你可能感兴趣的:(PHP)