我试图写一些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;
}
}
答案 0 :(得分:2)
您无法在HTTP地址上呼叫opendir()
。 HTTP没有“目录”的概念(除非你算上WebDAV)。