ThinkChat2.0新版上线,更智能更精彩,支持会话、画图、视频、阅读、搜索等,送10W Token,即刻开启你的AI之旅 广告
关于模板/插件的命名:**小写英文字母、数字和下划线组合,不支持驼峰写法!** #### **定义命名空间:** ~~~ <?php namespace templates\index\defaults; class Hook{ ... } ?> ~~~ 即为:根目录/templates/index/defaults/目录下的Hook.class.php #### **使用定义的命名空间** ~~~ <?php use templates\index\defaults\Hook; class test{ public function testDemo(){ $hook=new Hook(); //若存在有静态变量或方法 $a=Hook::静态变量名称 $b=Hook::静态方法名称 } } ?> ~~~