doujiang1832 2014-01-24 14:01
浏览 67
已采纳

PHP函数byref参数的默认值

I have a PHP function that I have been asked to update as business needs have changed. The original function worked like this.

function myFunction($var1, $var2, $var3) {
   CODE GOES HERE
}

For the new version, a fourth optional parameter is required. I know that I can do this like this:

function myFunction($var1, $var2, $var3, $var4 = "") {
    CODE GOES HERE
}

I created the new code and it works fine. I've just been informed that when a value is passed in for the last parameter, it needs to be byref. I searched the PHP documentation and questions here but haven't seen anything about the possibility of this. I would assume the code would work like this:

function myFunction($var1, $var2, $var3, &$var4 = "") {
    CODE GOES HERE
}

Will this work? Does PHP allow a variable to be passed by ref and also have a default value set for it if nothing is passed in?

  • 写回答

1条回答 默认 最新

  • douzi2749 2014-01-24 14:04
    关注

    Yes, it does work.

    Have a look here at ideone.com to see it in action.

    <?php
    
    function test(&$var = "test") {
        echo $var;
    }
    
    test();
    

    Outputs

    test
    

    However, there is a caveat. If you do pass a parameter, it needs to be a reference to a variable. The following will not work:

    test("Testing");
    

    Because "Testing" is a literal string, not a referable variable.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?