Skip to content

Instantly share code, notes, and snippets.

@toledorobia
Last active January 5, 2018 15:12
Show Gist options
  • Save toledorobia/7a0ab415780d6bf9615d3bb7f2a6938e to your computer and use it in GitHub Desktop.
Save toledorobia/7a0ab415780d6bf9615d3bb7f2a6938e to your computer and use it in GitHub Desktop.
PHP - Check dir is empty
<?php
function is_dir_empty($dir) {
if (!is_readable($dir)) {
return null;
}
return (count(scandir($dir)) == 2);
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment