Array to string conversion error in PHP

2020-05-01 07:36发布

I have following code to backtrace the error ....but its

$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...

    }


}

I am getting notice as Array to string conversion here:

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

I actually want to convert this array into string. Is there any method or function which can do the conversion without giving me any notice...

How do I correct this?

标签: php
3条回答
叼着烟拽天下
2楼-- · 2020-05-01 07:48

you begin with:

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

then you try to do

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

i would rather define a $tracestr string for aggregating text content.

查看更多
够拽才男人
3楼-- · 2020-05-01 08:03
$trace = debug_backtrace();
foreach($traces as ...)

There's something wrong here. $trace is a Debug Backtrace array. While you foreach($traces) ... which seems undefined. And you append to $traces which is supposed to be a non-scalar to foreach it.

Just name your variables properly and make names different!

查看更多
我欲成王,谁敢阻挡
4楼-- · 2020-05-01 08:04

You are not creating array properly

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

You are creating a string.

 $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
                }
查看更多
登录 后发表回答