从 PHP 命名空间中定义全局函数
2022-08-30 17:10:40
是否可以从 PHP 命名空间(在具有命名空间声明的文件内)定义全局函数?如果是这样,如何?
<?php
namespace my_module;
# bunch of namespaced functions
# ...
# then I want to define a global function my_module()
# that is an alias to my_module\mymodule()