在文档文件夹中搜索 时间:2013-05-28 作者:Galadre 有人知道为什么下面的内容什么都不返回吗?<?php $dir = get_bloginfo(\'template_directory\') . "/documents/*"; foreach(glob($dir) as $file) { echo $file; } ?> 我在documents文件夹中有文件。。。提前感谢! 1 个回复 最合适的回答,由SO网友:Bainternet 整理而成 get_bloginfo(\'template_directory\') 返回URI,我相信glob 使用路径,请尝试:$dir = get_theme_root() . "/documents/*"; foreach(glob($dir) as $file) { echo $file; } 结束 文章导航