gpt4 book ai didi

PHP 在另一个命名空间中使用 root 命名空间而不使用反斜杠

转载 作者:行者123 更新时间:2023-12-04 17:03:03 25 4
gpt4 key购买 nike

我的根命名空间中有一堆类。我想在另一个命名空间中使用它们,但我不知道如何“包含”它们,这样我就不必在开头添加反斜杠。

class A {
public static $a = 1;
}

namespace B {
use \; // apparently invalid

class C {
static function D { return A::$a; } // desired syntax
}
}

\B\C::D(); // expected result is 1

这可能吗?

最佳答案

无论命名空间是否为“root”,都不能使用 use 导入整个命名空间。 .你能做的最好的是:

use A;

关于PHP 在另一个命名空间中使用 root 命名空间而不使用反斜杠,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29235215/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com