PHP全局变量
我有一个全局变量 $config,现在我有一个类,我想使用 config 中的值作为类方法的默认参数,例如函数 f(var=$config['val']){} 这个分配会起作用吗?
I have a global variable $config, now i have a class and i want to use a value from config as a default argument for a class method like function f(var=$config['val']){} will this assignment work?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
不,不会的。
无法在函数定义中自动执行此操作。
您必须定义一个空的默认值:
然后用方法内配置数组中的值填充
$var
(如果该值为空)。No, it won't.
There is no way to do this automatically in the function definition.
You would have to define an empty default:
and then fill
$var
with a value from your configuration array inside the method if it is null.不,我要做的是将 $config 作为字段添加到类中,如下所示:
No. What I would do is to add $config as an field to the class, like this: