PHP Fatal error: Call-time pass-by-reference has b

2019-02-12 15:57发布

I have an oldish script and lately I get this error:

Fatal error: Call-time pass-by-reference has been removed in /****/******/public_html/****/cp-list-summary.php on line 100

And it looks like this around line 100 on that file:

if ($row[images])
{
    $image_set = array ();
    $result = mysql_query ('SELECT fname FROM ' . $dbimgs . ' WHERE listid=\'' . $_GET['id'] . '\' ORDER BY id ASC', $link);
    while ($images = mysql_fetch_array ($result))
    {
        array_push (&$image_set, $images[fname]);
    }
}

What causes the error and how to fix it? I'm not a developer, so please take it slow.

3条回答
女痞
2楼-- · 2019-02-12 16:48

You are trying to pass a pointer to your array in array_push. That is why the fatal error is encountered. Simply use:

array_push( $image_set, $images[fname] );

Note: array_push() will raise a warning if the first argument is not an array.

查看更多
Evening l夕情丶
3楼-- · 2019-02-12 16:58

Enter to Joomla root directory and execute:

find ./ -type f -name "*.php" -exec sed -i 's/\&\$/\$/g' {} +

This works for me.

查看更多
你好瞎i
4楼-- · 2019-02-12 17:00

Looks like you site php has being upgraded or you are reusing code from < php 5.3

Simply remove the & on (&$image

Note: There is no reference sign on a function call - only on function definitions. Function definitions alone are enough to correctly pass the argument by reference. As of PHP 5.3.0, you will get a warning saying that "call-time pass-by-reference" is deprecated when you use & in foo(&$a);. And as of PHP 5.4.0, call-time pass-by-reference was removed, so using it will raise a fatal error.

No other expressions should be passed by reference, as the result is undefined.

查看更多
登录 后发表回答