dongshuming7131 2016-10-16 08:19
浏览 22
已采纳

“仅变量应通过引用传递”的概念是什么?

Here is my code:

$page = explode("/", Request::url());
$page = end($page);

As you know, $page contains the last argument of the URL. Code above works as well and all fine.

But when I write it like this:

$page = end(explode("/", Request::url()));

Then surprisingly it throws this error:

Only variables should be passed by reference

Why?

  • 写回答

2条回答 默认 最新

  • duanfei7508 2016-10-16 08:33
    关注

    It's not that surprising. When a value is passed by reference, it means that the function can alter the variable and the changes will be visible outside the function. Take this code:

    $byValue = 5;
    
    function passByValue($variable)
    {
        $variable++;
        echo 'Value inside ' . $variable . PHP_EOL;
    }
    
    passByValue($byValue);
    echo 'Value outside ' . $byValue . PHP_EOL;
    
    
    $byReference = 10;
    
    function passByReference(&$variable)
    {
        $variable++;
        echo 'Value inside ' . $variable . PHP_EOL;
    }
    
    passByReference($byReference);
    echo 'Value outside ' . $byReference . PHP_EOL;
    

    What it means is that the passByReference function needs to have access to the memory location where the variable is stored in order to change it and for that memory location to exist, you need to have a variable pointing to it. However the result of a function is "volatile" in that fashion, it will get garbage collected if it's not stored in a variable, thus cannot be passed by reference.

    The end(), next() and so on function need parameters to be passed by reference to alter their internal states.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 拟通过pc下指令到安卓系统,如果追求响应速度,尽可能无延迟,是不是用安卓模拟器会优于实体的安卓手机?如果是,可以快多少毫秒?
  • ¥20 神经网络Sequential name=sequential, built=False
  • ¥16 Qphython 用xlrd读取excel报错
  • ¥15 单片机学习顺序问题!!
  • ¥15 ikuai客户端多拨vpn,重启总是有个别重拨不上
  • ¥20 关于#anlogic#sdram#的问题,如何解决?(关键词-performance)
  • ¥15 相敏解调 matlab
  • ¥15 求lingo代码和思路
  • ¥15 公交车和无人机协同运输
  • ¥15 stm32代码移植没反应