dedecmsv5.7 前台模版里输出变量
程序员文章站
2022-04-14 16:45:52
如何在PHP文件查询出来的数据赋值给前端页面展示出来? 例如: PHP文件:agency.php 前端模版:edit_face.htm 或者: 输出变量:{dede:global.变量名} ......
如何在php文件查询出来的数据赋值给前端页面展示出来?
例如:
php文件:agency.php
require_once(dirname(__file__) . '/../../include/common.inc.php'); require_once(dedeinc.'/arc.agency.class.php'); $test = 123;$arc = new agency(dedetemplate."/default/agency/edit_face.htm"); $arc->display();
前端模版:edit_face.htm
<!--输出变量--> {dede:global name="test"/}
或者:
<!--输出变量--> {dede:global.test/}
输出变量:{dede:global.变量名}