skymvc开发手册之视图view配置
查看视频教程或者获取有关《skymvc开发手册》更多信息

skymvc视图概述


skymvc的视图是跟模板引擎深度结合一起的,语法类似smarty


视图配置

/*视图模版配置*/
$cache_dir="";//模版缓存文件夹
$template_dir="themes/".SKINS;//模版风格文件夹
$wap_template_dir="themes/".WAPSKINS;
$compiled_dir="";//模版编译文件夹
$html_dir="";//生成静态文件夹
$smarty_caching=true;//是否开启缓存
$smarty_cache_lifetime=3600;//缓存时间


实例:index.php

<?php
error_reporting(E_ALL ^ E_NOTICE);
header("Content-type:text/html; charset=utf-8");
if(ini_get("register_globals"))
{
	die("请关闭全局变量");
}
require("config/rewriterule.php");
require("config/config.php");
require("config/const.php");
define("ROOT_PATH",  str_replace("\", "/", dirname(__FILE__))."/");
define("CONTROL_DIR","source/index");
define("MODEL_DIR","source/model");
define("HOOK_DIR","source/hook");
/*视图模版配置*/
$cache_dir="";//模版缓存文件夹
$template_dir="themes/".SKINS;//模版风格文件夹
$wap_template_dir="themes/".WAPSKINS;
$compiled_dir="";//模版编译文件夹
$html_dir="";//生成静态文件夹
$rewrite_on=REWRITE_ON;//是否开启伪静态 0不开 1开启
$smarty_caching=true;//是否开启缓存
$smarty_cache_lifetime=3600;//缓存时间
require("./skymvc/skymvc.php");
//用户自定义初始化函数
function userinit(){
	 
}

?>