phpeclipse

Eclipse completions - @var (PHPDoc) question

心已入冬 提交于 2020-01-02 06:32:49
问题 I have strange problem. When I use @return Model\Article in the model-loading method then I see the model's methods in autocomplete of Eclipse. The model-loading method returns more objects so I want it to @return My\BaseModel and then put the /* @var $model Model\Article */ for each model specificaly (when I use it). The problem is that the @return Model\Article works well (I see Model\Article + My\BaseModel methods) but the other way ( @return My\BaseModel and inline /*...*/ ) doesn't - it

phpeclipse+xdebug配置

泄露秘密 提交于 2019-11-29 16:27:14
一、安装配置 1、访问 http://www.phpeclipse.com/ ,找到右边的 1.2.x dev nightly下的http://update.phpeclipse.com/update/nightly_1.2.x 路径。 2、打开eclipse找到help->Intall New software updates,点击右侧的 add site后填入:Eclipse 安装php插件,http://update.phpeclipse.com/update/nightly_1.2.x ,然后全选择,点击next即可安装。 3、XMAPP 下载安装 访问 XMAPP页面 下载xampp-win32-1.7.7-usb-lite 安装包。 解压 D:\xampp。修改配置文件,xampp\apache\conf\httpd.conf,这里做了2个修改。 端口修改为81,同时将Include "conf/extra/httpd-dav.conf"注释起来。 执行 setup_xampp.bat,访问下面url能正常出来,则xmapp环境没问题。 http://localhost:81/xampp/phpinfo.php 4、启动xdebug XAMPP 1.7.2 捆绑了相应的 Xdebug .dll 文件。只需配置 php.ini 即可使用该文件。请注意,所有 Xdebug

XAMPP + phpEclipse 调试php

和自甴很熟 提交于 2019-11-28 16:42:21
*前言 今天项目用到以前项目既存的php API ,为了调查以前项目的相关内容只有从头学习php了,可是光看代码很难理解啊,所以找个debug php的方法呗。网上找了相关的资料好多都是老早以前的了,而且含糊不清啊。在此把这个简单的php调试方法:XAMPP + phpEclipse的Xdebug方法记录下来。 *环境 〇Windows7 〇XAMPP Windows版 1.8.1 下载地址:http://www.apachefriends.org/zh_cn/xampp-windows.html#1787 〇phpEclipse Version: 3.0.2 下载地址:http://www.zend.com/en/community/pdt/downloads *安装 1,XAMPP的安装 在下载页面有:http://www.apachefriends.org/zh_cn/xampp-windows.html#1787 安装完成后请确认是否能启动apache。 2,phpEclipse下载后直接解压就可 *设定 1,在XAMPP中已经包含了Xdebug,所以只要稍微设置即可。 〇php.ini的修改:在文件的最后将以下内容【;】删除 ;zend_extension = "C:\xampp\php\ext\php_xdebug.dll"   ↓   zend_extension =

How to install a PHP IDE plugin for Eclipse directly from the Eclipse environment?

妖精的绣舞 提交于 2019-11-28 15:48:44
问题 I have a clean Eclipse Java SDK. I would like to make it suitable for developing PHP applications. So I need a PHP IDE plugin (or something like that). How could I install it from the Eclipse environment? 回答1: Easy as pie: Open Eclipse and go to Help-> Software Updates-> Find and Install Select "Search for new features to install" and click "Next" Create a New Remote Site with the following details: Name: PDT URL: http://download.eclipse.org/tools/pdt/updates/4.0.1 Get the latest above