📜  从默认参数 php 代码示例调用函数

📅  最后修改于: 2022-03-11 14:53:36.236000             🧑  作者: Mango

代码示例1
//I don't think it can be done, but this should work.

function func3_name(arg1,arg2=null,etc...) {
    arg2 = (arg2==null ? time() : arg2);
}