日食+;xdebug 2.2.1调试打开过期文件

日食+;xdebug 2.2.1调试打开过期文件,xdebug,easyphp,Xdebug,Easyphp,我将EasyHP更新为第12版 如果我在调试期间在Eclipse中将断点设置为/work/abc.php Eclipse打开一个c:\www\work\abc.php 当我修改/work/abc.php时,Eclipse仍然显示旧文件 Xdebug 2.2.1更稳定,但是本地文件拷贝是什么呢? 下面是php.ini ;Xdebug zend_extension = "${path}\php\php5314x120809150232\php_xdebug-2.2.0-5.3-vc9.dll" xd

我将EasyHP更新为第12版

如果我在调试期间在Eclipse中将断点设置为/work/abc.php Eclipse打开一个c:\www\work\abc.php

当我修改/work/abc.php时,Eclipse仍然显示旧文件

Xdebug 2.2.1更稳定,但是本地文件拷贝是什么呢? 下面是php.ini

;Xdebug
zend_extension = "${path}\php\php5314x120809150232\php_xdebug-2.2.0-5.3-vc9.dll"
xdebug.default_enable=0
xdebug.remote_enable=1
xdebug.remote_host=127.0.0.1
xdebug.remote_port=9000
xdebug.remote_handler=dbgp
xdebug.remote_mode=req
xdebug.remote_autostart = false
xdebug.dump_globals=1
xdebug.dump=COOKIE,FILES,GET,POST,REQUEST,SERVER,SESSION
xdebug.dump.SERVER=REMOTE_ADDR,REQUEST_METHOD,REQUEST_URI
xdebug.show_local_vars=1
xdebug.show_mem_delta=1
xdebug.collect_includes=1
xdebug.collect_vars=1
xdebug.collect_params=4
xdebug.collect_return=1
xdebug.auto_trace=0
xdebug.trace_options=0
xdebug.trace_format=0
xdebug.trace_output_dir="${path}\xdebug\trace"
xdebug.trace_output_name="trace.%t"
xdebug.profiler_enable=0
xdebug.profiler_append=1
xdebug.profiler_enable_trigger=1
xdebug.profiler_output_dir="${path}\xdebug\profiler"
xdebug.profiler_output_name="cachegrind.out.%s.%t"
;/Xdebug

我正在使用Eclipse for PHP开发者版本:3.0.2(Eclipse平台版本:3.7.1)

远程工作时,需要将远程文件映射到本地目录。也许Eclipse试图在本地打开该文件,而当您更改该文件时,它不知道必须远程更新该文件?我对Eclipse了解不多,但我将Komodo与php和xdebug结合使用。

您能再详细说明一下吗?-是否在请求仍处于活动状态时修改文件(仅由调试器停止)?-您是在eclipse中修改文件还是通过其他工具修改文件?我只在没有请求进行时使用eclipse进行修改(就像在debugger中不等待我按F8continue)似乎您的工作流是正确的…奇怪的是,我从来没有在apache上远程运行xdebug。听起来肯定是缓存问题