当内容页面向增加一些自己查询处理的变量时

    需要重写conten类

    http://help.phpcmf.net/461.html

    内容继承类方法

    1. // 格式化显示内容
    2. public function _call_show($data) {
    3.  
    4. $data['xxxx'] = '这是我的增加变量';
    5. return $data;
    6. }

    $data 是当前内容show.html输出的全部字段

    那么,show.html可以读取变量xxxx

    1. {$xxxx}

    文档最后更新时间:2019-05-23 08:53:31