DeveloperBreeze

File Listing with glob()

$directoryPath = '/home/user/projects/using-glob';
$fileExtension = 'jpg';

// View files with the specified extension
foreach (glob($directoryPath . '/*.' . $fileExtension) as $image) {
    echo basename($image) . "\n";
}

// View all files without a specified extension
foreach (glob($directoryPath . '/*') as $file) {
    echo basename($file) . "\n";
}

Continue Reading

Handpicked posts just for you — based on your current read.

Discussion 0

Please sign in to join the discussion.

No comments yet. Start the discussion!