码迷,mamicode.com
首页 > 其他好文 > 详细

sublime text 3 上安装xdebug

时间:2014-12-22 17:53:25      阅读:155      评论:0      收藏:0      [点我收藏+]

标签:

安装完成之后启动xdebug,缺省设置下会显示warning等信息,很不方便。

可以参考

https://github.com/martomo/SublimeTextXdebug/blob/master/Xdebug.sublime-settings

屏蔽相关信息:

{
     // Break on exceptions, suspend execution
    // when the exception name matches an entry in this list value.
    "break_on_exception": [
        // E_ERROR, E_CORE_ERROR, E_COMPILE_ERROR, E_USER_ERROR
        "Fatal error",
        // E_RECOVERABLE_ERROR (since PHP 5.2.0)
        "Catchable fatal error",
        // E_WARNING, E_CORE_WARNING, E_COMPILE_WARNING, E_USER_WARNING
        //"Warning",
        // E_PARSE
        "Parse error",
        // E_NOTICE, E_USER_NOTICE
        //"Notice",
        // E_STRICT
        //"Strict standards",
        // E_DEPRECATED, E_USER_DEPRECATED (since PHP 5.3.0)
        //"Deprecated",
        // 0
        "Xdebug",
        // default
        "Unknown error"
    ]
}

 

sublime text 3 上安装xdebug

标签:

原文地址:http://www.cnblogs.com/xyuncn/p/4178492.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!