怎么創(chuàng)建以下代碼中的tpl和template_c目錄?
<?php? require('../smarty/Smarty.class.php');//smarty引入 $smarty=new?Smarty();//smarty類的實(shí)例化 $smarty->left_delimiter="{";//左定界符 $smarty->right_delimiter="}";//右定界符 $smarty->template_dir="tpl";//html模板的地址 $smarty->compile_dir="template_c";//模板編譯生成的文件 $smarty->cache_dir="cache";//緩存 $smarty->caching=true;//開啟緩存 $smarty->cache_Lifetime=120;//緩存時(shí)間
??>