PHP模版引擎原理、定义与用法实例(2)
test.php
<?php include 'Template.class.php'; $tpl = new Template(array('debug' => true)); $tpl->assign('data', 'hello world'); $tpl->assign('person', 'htGod'); $tpl->assign('data1', 3); $arr = array(1,2,3,4,'5',6); $tpl->assign('b', $arr); $tpl->show('member');
更多关于PHP相关内容感兴趣的读者可查看本站专题:《PHP模板技术总结》、《PHP基于pdo操作数据库技巧总结》、《PHP运算与运算符用法总结》、《PHP网络编程技巧总结》、《PHP基本语法入门教程》、《php面向对象程序设计入门教程》、《php字符串(string)用法总结》、《php+mysql数据库操作入门教程》及《php常见数据库操作技巧汇总》
希望本文所述对大家PHP程序设计有所帮助。