eclipse + xdebug 2.2.1 debug打开过时的文件

时间:2012-09-04 12:42:41

标签: xdebug easyphp

我将EasyPhp更新为版本12,

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

然后,如果我修改/work/abc.php Eclipse仍然显示旧文件!

Xdebug 2.2.1更稳定,但是这个本地文件副本是什么东西? enter image description here 这是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 Developers Version:3.0.2(Eclipse Platform Version:3.7.1)

1 个答案:

答案 0 :(得分:0)

远程工作时,需要将远程文件映射到本地目录。也许Eclipse试图在本地打开文件,当你更改文件时,它不知道它必须远程更新文件?我不太了解Eclipse,但我使用PHP和xdebug的Komodo。