Skip to content

Instantly share code, notes, and snippets.

@kidker
Forked from eusonlito/foldersize.php
Created September 27, 2017 19:02
Show Gist options
  • Save kidker/81bdc986ace66a61a1e7e60c169eae7d to your computer and use it in GitHub Desktop.
Save kidker/81bdc986ace66a61a1e7e60c169eae7d to your computer and use it in GitHub Desktop.
PHP function to get the folder size including subfolders
<?php
function folderSize ($dir)
{
$size = 0;
foreach (glob(rtrim($dir, '/').'/*', GLOB_NOSORT) as $each) {
$size += is_file($each) ? filesize($each) : folderSize($each);
}
return $size;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment