发布网友 发布时间:2022-04-07 05:59
共3个回答
热心网友 时间:2022-04-07 07:29
如果没定义命名空间那么用热心网友 时间:2022-04-07 08:47
有两种情况,如果没有定义命名空间
Loader::import('myclass');
$foo = new \myclass()
如果类中定义了命名空间:
先use myclass;
之后用 $obj = new myclass();
extend用法总结:网页链接
热心网友 时间:2022-04-07 10:21
require_once (EXTEND_PATH.'文件名');