Skip to content

Instantly share code, notes, and snippets.

@stefpe
Created April 15, 2019 19:33
Show Gist options
  • Save stefpe/195ce32e5fe761e2b664d7e5c6b92790 to your computer and use it in GitHub Desktop.
Save stefpe/195ce32e5fe761e2b664d7e5c6b92790 to your computer and use it in GitHub Desktop.
find .h and .c files in a directory
<?php
$files = glob('*.{h,c}', GLOB_BRACE);
if (!$files) {
die('error');
}
foreach ($files as $file) {
printf("%s -> %d bytes\n", $file, filesize($file));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment