获取进行类调用的错误行号和文件名

问题描述 投票:0回答:4

我有一个处理错误的课程。

我想调用类的公共静态方法来记录我的RPC服务器向我抛出的错误,而不需要使用__LINE__命令。

像这样的东西:

class errorHander{
    public static $errors = array();
    public static function logError($message){
        self::$errors[] = array('message', NEEED SOMHOW TO GET THE calling class, get the file in which the error ocured);
    }
}

这是最重要的,没有从被调用的函数传递文件位置。

所以像errorHander:logError(message, location)这样的东西是不行的。

php error-handling
4个回答
0
投票

那么这显然取决于你有什么样的错误。

您可能希望查看异常处理。 PHPs异常类提供方法getLine()和getTrace()。这可能就是你要找的东西。


0
投票

Exception :: getLine和getFile方法,我没有办法在不处理Exceptions的情况下执行此操作。这是一个参考。 http://www.php.net/manual/en/class.exception.php


0
投票

logError()只需要一个参数而不是2。

做这样的事情:

 class errorHander{
        public static $errors = array();
        public static function logError($message){
            self::$errors[] = array('message'=>$message);
        }
    }


    errorHander:logError("This is a no-yes go") //This should log

    echo errorHander:errors[0]["message"]; //print it

希望能帮助到你


0
投票

这可以使用xdebug-extension:http://xdebug.org

您可以使用xdebug_call_file()xdebug_call_class()获取所需信息。

请参阅文档:http://xdebug.org/docs/all_functions

© www.soinside.com 2019 - 2024. All rights reserved.