Warning: file_get_contents(/data/phpspider/zhask/data//catemap/1/php/280.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Php 加载xdebug时,Apache在yaf框架下崩溃。_Php_Xdebug - Fatal编程技术网

Php 加载xdebug时,Apache在yaf框架下崩溃。

Php 加载xdebug时,Apache在yaf框架下崩溃。,php,xdebug,Php,Xdebug,我的php.ini是这样的: [XDebug] zend_extension="D:\xampp\php\ext\php_xdebug-2.2.1-5.4-vc9.dll" xdebug.remote_enable=true xdebug.remote_host=localhost xdebug.remote_port=9000 xdebug.remote_handler=dbgp xdebug.profiler_enable=1 xdebug.profiler_output_dir="D:\x

我的php.ini是这样的:

[XDebug]
zend_extension="D:\xampp\php\ext\php_xdebug-2.2.1-5.4-vc9.dll"
xdebug.remote_enable=true
xdebug.remote_host=localhost
xdebug.remote_port=9000
xdebug.remote_handler=dbgp
xdebug.profiler_enable=1
xdebug.profiler_output_dir="D:\xampp\tmp"

[yaf]
extension=php_yaf-2.2.7-x86-5.4.x-zts-nodebug.dll
;extension=php_yaf.dll
yaf.action_prefer=on
extension=php_mongo-1.3.2RC1-5.4-vc9.dll
extension=php_igbinary.dll
extension=php_redis.dll
我从

所以我访问网址:

http://localhost/sample/index.php
当我的断点进入index.php第21行(->run();)时,Apache崩溃了,为什么

index.php

$response = $application
    ->bootstrap()/*bootstrap是可选的调用*/
    ->run()/*执行*/;     //this place   apache crached ...

有人能帮我吗?谢谢

我使用的是xampp环境