迅睿CMS 自定义类方法文件

泪湿孤枕 提交于 2020-04-25 12:17:09

 

迅睿CMS框架可以自动识别和加载第三方类方法,开发者需要按要求将自己的类定义好,直接可以在控制器中执行该方法,不需要加载,程序会自动识别加载。

第三方类方法定义目录格式:

dayrui/ThirdParty/类名.php
<?php namespace Phpcmf\ThirdParty;

class 类名 {


}

类名:首字母必须大小,其他字母小写

 

1、创建类方法文件

dayrui/ThirdParty/Test.php

<?php namespace Phpcmf\ThirdParty;

/**
 * test
 */

class Test {

    static function hello() {

        return 'hello';
    }

}

 

2、在控制器中执行方法

dayrui/Core/Controllers/Test.php

<?php namespace Phpcmf\Controllers;


class Test extends \Phpcmf\Common
{

    public function index() {

        echo \Phpcmf\ThirdParty\Test::hello();
    }

}

 

3、访问执行结果

/index.php?c=test

 

  

迅睿CMS系统:https://www.xunruicms.com/

本文档原文地址:https://www.xunruicms.com/doc/901.html

  

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!