opendir() 函数打开目录句柄。该函数成功则返回目录句柄资源。失败则返回 FALSE。如果路径不是合法目录,或者由于许可限制或文件系统错误导致的目录不能打开,则抛出 E_WARNING 级别的错误。您可以通过在函数名称前添加 '@' 来隐藏 opendir() 的错误输出。
opendir() 函数实例,代码如下:
<?php $dir = "./"; // open a known directory, and proceed to read its contents if (is_dir($dir)) { if ($dh = opendir($dir)) { while (($file = readdir($dh)) !== false) { echo "filename: $file : filetype: " . filetype($dir . $file) . "n"."<br />"; } closedir($dh); } } ?>
Atas ialah kandungan terperinci php目录遍历opendir()函数的用法. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!