标签: php python
def func(one=1,two=2,tree=3): return "x" func(one=1) func(two=2) func(tree=3)
php我们编写代码
function func($one=1,$two=2,$tree=3){ return "x"; } func(3); // $one = 3 func(1,2,3);
我要样式
func($one=1);