note 13667 deleted from function.disk-total-space by felipe

[email protected]
Newsgroups php.notes
Message-ID <[email protected]>
Note Submitter: kit at 4me dot ru 

----

I just did the simple thing -

<?php
function du($dir)
{
    $du = popen("/usr/bin/du -sk $dir", "r");
    $res = fgets($du, 256);
    pclose($du);
    $res = explode(" ", $res);
    
    return $res[0];
}
?>
lmpx.com only provides a reader for public news (NNTP) servers. It is not affiliated with the servers or forums shown here and is not responsible for the content of articles, which is written by their respective authors.