Skip to content

Instantly share code, notes, and snippets.

View ipara-dev's full-sized avatar

Ion Para ipara-dev

View GitHub Profile
@eusonlito
eusonlito / foldersize.php
Last active June 2, 2024 22:58
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);
}