Skip to content

Instantly share code, notes, and snippets.

@letranloc
Forked from eusonlito/foldersize.php
Created April 18, 2017 09:09
Show Gist options
  • Save letranloc/53104c44c04df8c669742cca9ad8a5f9 to your computer and use it in GitHub Desktop.
Save letranloc/53104c44c04df8c669742cca9ad8a5f9 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