blessing-skin-server/libraries/View.class.php
2016-03-27 11:38:27 +08:00

20 lines
465 B
PHP

<?php
/**
* @Author: printempw
* @Date: 2016-03-18 20:49:48
* @Last Modified by: printempw
* @Last Modified time: 2016-03-27 11:23:25
*/
class View
{
public static function show($tpl_name, $data=[]) {
$filename = BASE_DIR."/templates/".$tpl_name.".tpl.php";
if (file_exists($filename)) {
include $filename;
} else {
throw new E("未找到模板文件 ".$tpl_name.".tpl.php", 2, true);
}
}
}