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::静态方法名称 } } ?> ~~~