php自动获取目录下的模板的代码

前端之家收集整理的这篇文章主要介绍了php自动获取目录下的模板的代码前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

目录下必须有default.gif(此图为模板缩略图)的才为合法的模板
<div class="codetitle"><a style="CURSOR: pointer" data="34397" class="copybut" id="copybut34397" onclick="doCopy('code34397')"> 代码如下:

<div class="codebody" id="code34397">
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;
}

原文链接:https://www.f2er.com/php/28380.html

猜你在找的PHP相关文章