如何在不给函数调用任何值的情况下跳过第一个参数,以便第一个参数可以采用默认值NULL?
function test($a = NULL, $b = true){
if( $a == NULL){
if($b == true){
echo 'a = NULL, b = true';
}
else{
echo ' a = NULL, b = false';
}
}
else{
if($b == true){
echo 'a != NULL, b = true';
}
else{
echo ' a!=NULL, b = false';
}
}
}
test(); //ok
test(NULL); //ok
test(5); //ok
test(5,false) //ok
test(,false); // How to skip first argument without passing any value? ->PARSE error
// i don' want to use default value for first argument, although test(NULL,false)
// or test('',false) will work but can i skip first argument somehow?
// i want to pass only second argument, so that first arg will be default set by
// function
答案 0 :(得分:5)
你不能只是跳过PHP中的一个参数。
您可能希望考虑Perl技巧并使用关联的数组。使用array_merge
将参数与默认值合并。
e.g。
function Test($parameters = null)
{
$defaults = array('color' => 'red', 'otherparm' => 5);
if ($parameters == null)
{
$parameters = $defaults;
}
else
{
$parameters = array_merge($defaults, $parameters);
}
}
然后像这样调用函数
Test(array('otherparm' => 7));
答案 1 :(得分:0)
您可以更改参数的位置,也可以将参数作为数组传递,例如:
test($options);
答案 2 :(得分:0)
将您的功能重新定义为
function test($b = true,$a = NULL){
//logic here
}
你可以称之为test(5);避免第二个参数。
答案 3 :(得分:-2)
你必须使用PHP函数标准定义的格式
test("",false);
您使用jquery库的要求...用于传递其函数的参数。 但不是在PHP中