php opendir和closedir配合使用

PHP
小樊
85
2024-07-14 17:27:29
欄目: 編程語言

<?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";
}
?>

在這個(gè)示例中,我們首先使用opendir()函數(shù)打開指定目錄,然后使用readdir()函數(shù)讀取目錄中的文件,并在控制臺(tái)輸出文件名。最后,我們使用closedir()函數(shù)關(guān)閉目錄句柄。如果目錄無法打開,則輸出“Failed to open directory”。

0