0

我有以下代码来回溯错误....但是它

$traces = debug_backtrace();

foreach ($traces as $k => $v)
{
    if ($v['function'] == 'include' 
        || $v['function'] == 'include_once' 
        || $v['function'] == 'require_once' 
        || $v['function'] == 'require')
    {
        $args = ''; 
        if (isset($v['args']) && is_array($v['args']))
        {
            $size = count($v['args']);
            foreach ($v['args'] as $key => $arg)
            {
                $args .= $v['args'][$key];
                if($key < $size)
                {
                    $args .= ', ';
                }
            }
        }

        $traces .= '#' . $k . ' ' 
                 . $v['function']
                 . '('.$args.') called at ['
                 . $v['file'].':'.$v['line'].']';
    }
    else
    {
        $function = (array_key_exists('function',$v)) ? 
                        $v['function'].'() ' : 'function_name';
        $file     = (array_key_exists('file',$v)) ? 
                        $v['file'] : 'file_name';
        $line     = (array_key_exists('line',$v)) ? 
                        $v['line'] : 'line';
        $traces  .= "#{$k} $function called at {$file}:{$line}\n";//This line giving me notice...

    }


}

我在这里收到数组到字符串转换的通知:

$traces .= "#$k $function called at $file:$line\n";

我实际上想将此数组转换为字符串。是否有任何方法或功能可以在不给我任何通知的情况下进行转换...

我该如何纠正?

4

3 回答 3

1

你开始:

foreach($traces as $k=>$v) <- $traces here is an array

然后你试着做

$traces.= "xxx" <- $traces here is handled as a string

我宁愿定义一个 $tracestr 字符串来聚合文本内容。

于 2012-10-18T16:25:34.953 回答
0

您没有正确创建数组

 $args .= $v['args'][$key];

您正在创建一个字符串。

 $args = array(); 
                if(isset($v['args']) && is_array($v['args']))
                {
                    $size = count($v['args']);
                    foreach ($v['
                    args'] as $key => $arg)
                    {
                        array_push($args,$v['args'][$key]);
                       // some of your code
                }
于 2012-10-18T16:26:45.823 回答
0
$trace = debug_backtrace();
foreach($traces as ...)

这里有问题。$trace是一个调试回溯数组。当您foreach($traces) ... 似乎未定义时。并且你附加到$traces这应该是一个非标量来foreach它。

只需正确命名您的变量并使名称不同!

于 2012-10-18T16:27:33.900 回答