PHP 8.5.0 Beta 1 available for testing

Voting

: min(two, nine)?
(Example: nine)

The Note You're Voting On

Anonymous
4 years ago
Include dotfiles excluding . and .. special dirs with .[!.]*

<?php
$all_files
= array_merge(glob('.[!.]*'), glob('*'));
// or
$all_files = glob('{.[!.],}*', GLOB_BRACE);
?>

<< Back to user notes page

To Top