博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
eclipse开发调试wordpress(一)-安装php开发环境
阅读量:5874 次
发布时间:2019-06-19

本文共 1331 字,大约阅读时间需要 4 分钟。

hot3.png

1 软件下载

1.1 eclipse

这里使用的是eclipse-php

下载地址:

1.2 xampp

这里下载的是精简版

下载地址:

 

2 集成配置

 

步骤一:启动eclipse设置一个工作区,例如

 

 

步骤二:配置eclipse

windows>>Preferences>>PHP>>PHP Executables>>点击Add

windows>>Preferences>>PHP>>Debug

 

步骤三:配置xampp

修改xmapp\app\php.ini配置文件,开启XDebug功能

[XDebug]zend_extension = "\tool\xampp\php\ext\php_xdebug.dll"xdebug.profiler_append = 0xdebug.profiler_enable = 1xdebug.profiler_enable_trigger = 0xdebug.profiler_output_dir = "\tool\xampp\tmp"xdebug.profiler_output_name = "cachegrind.out.%t-%s"xdebug.remote_enable = 0xdebug.remote_handler = "dbgp"xdebug.remote_host = "127.0.0.1"xdebug.trace_output_dir = "\tool\xampp\tmp"

修改之后访问查看是否有XDebug内容

修改xmapp\xampp\apache\conf\httpd.conf

## 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 "D:/workspace/php"
## Note that from this point forward you must specifically allow# particular features to be enabled - so if something's not working as# you might expect, make sure that you have specifically enabled it# below.### This should be changed to whatever you set DocumentRoot to.#

 

步骤三:新建php项目

在eclipse中,右键>>New>>PHP Project

然后新建php文件,写入

右键页面>>Run As >> PHP Web Page

转载于:https://my.oschina.net/linjunlong/blog/118820

你可能感兴趣的文章
Intellij IDEA 快捷键整理
查看>>
Redis 通用操作2
查看>>
性能优化——统计信息——SQLServer自动更新和自动创建统计信息选项
查看>>
11. Spring Boot JPA 连接数据库
查看>>
洛谷P2925 [USACO08DEC]干草出售Hay For Sale
查看>>
MapReduce工作原理流程简介
查看>>
那些年追过的......写过的技术博客
查看>>
小米手机解锁bootload教程及常见问题
查看>>
Python内置函数property()使用实例
查看>>
Spring MVC NoClassDefFoundError 问题的解决方法。
查看>>
CentOS 6.9配置网卡IP/网关/DNS命令详细介绍及一些常用网络配置命令(转)
查看>>
python基础教程_学习笔记19:标准库:一些最爱——集合、堆和双端队列
查看>>
C# 解决窗体闪烁
查看>>
CSS魔法堂:Transition就这么好玩
查看>>
【OpenStack】network相关知识学习
查看>>
centos 7下独立的python 2.7环境安装
查看>>
[日常] 算法-单链表的创建
查看>>
前端工程化系列[01]-Bower包管理工具的使用
查看>>
使用 maven 自动将源码打包并发布
查看>>
Spark:求出分组内的TopN
查看>>