Home > php教程 > php手册 > php自动获取目录下的模板的代码

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

WBOY
Release: 2016-06-06 20:34:53
Original
1243 people have browsed it

php自定义函数之自动获取目录下的模板的实现代码,一般制作模板分离的管理系统需要用得到。

目录下必须有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;
}

,美国空间,虚拟主机,网站空间
Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template