php default arguments

前端 未结 4 639
北海茫月
北海茫月 2020-12-03 13:58

In PHP, if I have a function written like this

function example($argument1, $argument2=\"\", $argument3=\"\")

And I can call this function

4条回答
  •  悲哀的现实
    2020-12-03 14:25

    Passing null or "" for a parameter you don't want to specify still results in those nulls and empty strings being passed to the function.

    The only time the default value for a parameter is used is if the parameter is NOT SET ALL in the calling code. example('a') will let args #2 and #3 get the default values, but if you do example('a', null, "") then arg #3 is null and arg #3 is an empty string in the function, NOT the default values.

    Ideally, PHP would support something like example('a', , "") to allow the default value to be used for arg #2, but this is just a syntax error.

    If you need to leave off arguments in the middle of a function call but specify values for later arguments, you'll have to explicitly check for some sentinel value in the function itself and set defaults yourself.


    Here's some sample code:

    and for various inputs:

    example():
    string(1) "a"
    string(1) "b"
    string(1) "c"
    
    example('z'):
    string(1) "z"
    string(1) "b"
    string(1) "c"
    
    example('y', null):
    string(1) "y"
    NULL
    string(1) "c"
    
    example('x', "", null):
    string(1) "x"
    string(0) ""
    NULL
    

    Note that as soon you specify ANYTHING for the argument in the function call, that value is passed in to the function and overrides the default that was set in the function definition.

提交回复
热议问题