演示专用--吹衣轻飏
$data = glob('*');
function getTitle ($file) {
preg_match("/.*\.(.*)/",$file, $matches);
if ($matches[1] && ($matches[1] == 'html'||$matches[1]=='htm'||$matches[1]=='php')) {
$lines_array = file($file);
$head = '';
$lines_string = implode('', $lines_array);
preg_match("/(.*)<\/title>/", $lines_string, $head);
preg_match("/this_page_hidden/", $lines_string, $noDemo);//如果有此标记 则该页面不显示在demo列表中
if (!$noDemo[0] && $head[1]){
echo '- '.$head[1].'
';
}
}
}
foreach ($data as $dir) {
if (is_dir($dir)) {
$dir1 = $dir.'/index.html';
if (file_exists($dir1)){
getTitle($dir1);
}else if(file_exists($dir.'/index.php')){
getTitle($dir.'/index.php');
}
}else {
getTitle($dir);
}
}
?>
返回首页