标签列表

数据辅助函数的使用方法


helper.php文件存放在:"includes/templates/模板文件夹/helper.php";
作用:在标签调用数据的同时,偶尔会出现一些特殊情况需要对数据进行特殊处理而衍生一个数据辅助处理函数文件 使用方法:{openzc:标签 function="辅助函数"}... ...{/openzc:标签}


DEMO1:当调用促销活动产品列表时,促销倒计时,时间格式有要求
其中标签调用该怎么写还怎么写不变,重点是在函数里面将数据修改成前端需要的形式
[field:sale_date_end/]原版数据格式:2020-12-21  修改为时间戳
{openzc:prolist flag="sale" function="gettime()"}
倒计时:[field:sale_date_end/]
{/openzc:prolist}

helper.php文件内容
<?php
    function gettime($data){
        $data["sale_date_end"]=strtotime($data["sale_date_end"]);
        return $data;
    }

?>