Posted in PHP onAugust 08, 2010
目录下必须有default.gif(此图为模板缩略图)的才为合法的模板
function get_template () { $template = array (); $dir = CMS_ROOT.'/tpl/'; $n = 0; if (is_dir($dir)) { if ($dh = opendir($dir)) { while (($file = readdir($dh)) !== false) { if ($file =='.' or $file == '..' or $file == '.svn') { continue; } if (is_dir ($dir.$file)) { if (file_exists ($dir.$file.'/default.gif')) { $template[$n]['dir'] = $file; $template[$n]['pic'] ='/tpl/'.$file.'/default.gif'; } } $n++; } closedir($dh); } } return $template; }
php自动获取目录下的模板的代码
声明:登载此文出于传递更多信息之目的,并不意味着赞同其观点或证实其描述。
Reply on: @reply_date@
@reply_contents@