#1 cww2619
void make(spUrl spurl, string alias_url, int update_mode)第2个参数是指定文件生成名,make($urls,"/a/b.html",1)
执行方法老是一默认日期格式生成的静态文件
2011-02-18 09:53:41
2011-02-18 09:53:41
2011-02-18 10:09:28
2011-02-18 10:15:22
make第三个参数不要设置。
class main extends spController
{
function index(){
spClass('spHtml')->make(array('main', 'show'),'/abc/tt.html');
echo "aa";
}
function show(){
echo "aaa";
}
}
2011-02-18 12:18:04
2011-02-18 14:19:25