我需要从目录中选择一个随机图像。我见过一些使用 glob(); 的方法。但我希望使用 scandir(); 功能。
function random_img(){
$imageDir = wptouch_get_bloginfo('template_directory').'/images/default-tiles/';
$images = scandir($imageDir);
$randomImage = $images[array_rand($images)];
return $randomImage;
}
上面的函数应该拉一个图像,但我得到了这个错误:
scandir("/myfile/directory/") 无法打开目录:未在 "/myfile/directory/" 中实现