gpt4 book ai didi

php - 是否可以在没有类的情况下使用命名空间

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

是否可以在没有类的情况下使用命名空间?

例如:

namespace Foo;
// rest of the procedural code and functions

问是因为我认为命名空间仅在有类的地方使用。

谢谢你的帮助。

最佳答案

是的,您可以使用 namespace没有类(class),例如:

//demo.php file
namespace FooDemo;
function first() { return "First"; }
function second() { return "Second"; }
function third() { return "Third"; }

//test.php file
require_once 'demo.php';
foreach (array("first","second","third") as $funcs) {
echo call_user_func('FooDemo\\'.$funcs);
}

你的意思是这样吗

关于php - 是否可以在没有类的情况下使用命名空间,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14351717/

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