php opendir和closedir配合使用

PHP
895
2024/8/1 17:27:29
栏目: 编程语言
开发者测试专用服务器限时活动,0元免费领,库存有限,领完即止! 点击查看>>

<?php
$dir = '/path/to/directory';

// Open the directory
$handle = opendir($dir);

// Check if the directory was opened successfully
if ($handle) {
    // Read all files in the directory
    while (false !== ($file = readdir($handle))) {
        echo "$file\n";
    }
    
    // Close the directory
    closedir($handle);
} else {
    echo "Failed to open directory\n";
}
?>

在这个示例中,我们首先使用opendir()函数打开指定目录,然后使用readdir()函数读取目录中的文件,并在控制台输出文件名。最后,我们使用closedir()函数关闭目录句柄。如果目录无法打开,则输出“Failed to open directory”。

辰迅云「云服务器」,即开即用、新一代英特尔至强铂金CPU、三副本存储NVMe SSD云盘,价格低至29元/月。点击查看>>

推荐阅读: php复选数组有空值报错如何解决