我已经安装了 Xdebug 并在 Ubuntu 操作系统上运行,使用 Apatana 作为 IDE。当我开始调试时,它在 index.php 第 2 行停止。
<?php
error_reporting(E_ALL);
// change the following paths if necessary
$yii=dirname(__FILE__).'/../yii/framework/yii.php'; ==> this is the line no 2
$config=dirname(__FILE__).'/protected/config/main.php';
// remove the following lines when in production mode
defined('YII_DEBUG') or define('YII_DEBUG',true);
// specify how many levels of call stack should be shown in each log message
defined('YII_TRACE_LEVEL') or define('YII_TRACE_LEVEL',3);
require_once($yii);
Yii::createWebApplication($config)->run();
我不明白是什么原因,请任何 Yii+xdebug 专家帮助我,我需要在 aptana 上做任何额外的配置,比如添加库吗?