PHP全局变量

发布于 2024-09-16 12:29:13 字数 97 浏览 2 评论 0原文

我有一个全局变量 $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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

偏爱你一生 2024-09-23 12:29:13

这个作业会成功吗?

不,不会的。

无法在函数定义中自动执行此操作。

您必须定义一个空的默认值:

function f($var = null) {  .... }

然后用方法内配置数组中的值填充 $var(如果该值为空)。

will this assignment work?

No, it won't.

There is no way to do this automatically in the function definition.

You would have to define an empty default:

function f($var = null) {  .... }

and then fill $var with a value from your configuration array inside the method if it is null.

酒浓于脸红 2024-09-23 12:29:13

不,我要做的是将 $config 作为字段添加到类中,如下所示:

class MyAwesomeClass {
  public $config;

  public function f() {
    ...
  }
}

$cls = new MyAwesomeClass;
$cls->config = $GLOBALS['config'];
$cls->f();

No. What I would do is to add $config as an field to the class, like this:

class MyAwesomeClass {
  public $config;

  public function f() {
    ...
  }
}

$cls = new MyAwesomeClass;
$cls->config = $GLOBALS['config'];
$cls->f();
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文