Is it possible to check disk usage of an user with PHP? How?
Where is cached info of disk usage stored?
Is it possible to check disk usage of an user with PHP? How?
Where is cached info of disk usage stored?
One way, change it to df or df -hPHP Code:<?php
$output = exec('du -sh');
echo "$output";
?>