PHP 4/5在调用、跳过不想指定的参数时是否可能指定一个命名的可选参数(如在Python中)?
类似于:
function foo($a,$b='', $c='') { // whatever } foo("hello", $c="bar"); // we want $b as the default, but specify $c
谢谢