Skip to content

Instantly share code, notes, and snippets.

@thost96
Forked from eusonlito/foldersize.php
Created January 4, 2018 18:30
Show Gist options
  • Save thost96/dc153ceb18c49d9723db3c41de4a7c42 to your computer and use it in GitHub Desktop.
Save thost96/dc153ceb18c49d9723db3c41de4a7c42 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