Skip to content

Instantly share code, notes, and snippets.

View mfka's full-sized avatar
👋
Working

Marek Firlejczyk mfka

👋
Working
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);
}