opendir()无法打开目录,没有被强制进入

时间:2016-05-26 16:58:17

标签: php warnings slideshow opendir

我试图写一些php来从服务器上的文件制作图像幻灯片。当我尝试opendir时,它给了我标题中的错误

$images = glob('*.{jpg,jpeg,png,gif}', GLOB_BRACE);
$count = count($images);
$var_count = $count + 1;

$arr_img = Array();
$handle = opendir('http://dev2.matrix.msu.edu/~matrix.training/Holmberg_Dane');
while (false !== ($file = readdir($handle))) {
 if ($file != "." && $file != "..") {
    $arr_img[] = $file;
 }
}

1 个答案:

答案 0 :(得分:2)

您无法在HTTP地址上呼叫opendir()。 HTTP没有“目录”的概念(除非你算上WebDAV)。