Voting

: min(six, two)?
(Example: nine)

The Note You're Voting On

mbh789 at gmail dot com
7 years ago
function dir_size($file) {
//tested on win 7x64 php 5.4
exec('dir /s /a "' . $file.'"', $inf);
$r=explode(' ',$inf[count($inf)-2]);
$rr = preg_replace('~[^\d]+~','',$r[count($r)-2]);
return $rr;
}

<< Back to user notes page

To Top