Home  >  Q&A  >  body text

opendir() function in php

为什么下面用$str=opendir("/filename/")打开不文件目录
$str=opendir("/filename/");//而要改成$str=opendir("./filename/")才能打开
if (is_dir($str)){
	if ($dh = opendir($str){
		while (($file = readdir($dh)) !== false){
			echo "filename:" . $file . "<br>";
		}
		closedir($dh);
	}
}

犟老頭犟老頭1671 days ago724

reply all(0)I'll reply

No reply
  • Cancelreply