index.tpl:
<div>{insert name="get_current_time"}</div>index.php
<?php
require_once ("./libs/Smarty.class.php");
function insert_get_current_time(){
    return date("Y-m-d H:m:s");
}$smarty = new Smarty();
$smarty->template_dir = './templates/';
$smarty->compile_dir = './templates_c/';
$smarty->config_dir = './configs/';
$smarty->cache_dir = './cache/';
$smarty->cache_lifetime =2;
$smarty->caching = true;
if(!$smarty->is_cached()){
   echo "你好"; 
}$smarty->display(index.tpl);?>
if(!$smarty->is_cached())这个语句报错 
Warning: Missing argument 1 for Smarty::is_cached(), called in D:\AppServ\www\smarty\index.php on line 20 and defined in D:\AppServ\www\smarty\libs\Smarty.class.php on line 984