Follow along with the video below to see how to install our site as a web app on your home screen.
Anmerkung: This feature may not be available in some browsers.
Mir wird das Ergebnis ja in Byte angezeigt, wie krieg ich es hin, dass er mir es in GB anzeit?
function getSymbolByQuantity($bytes) {
$symbols = array('B', 'KiB', 'MiB', 'GiB', 'TiB', 'PiB', 'EiB', 'ZiB', 'YiB');
$exp = floor(log($bytes)/log(1024));
return sprintf('%.2f '.$symbol[$exp], ($bytes/pow(1024, floor($exp))));
}
## Anwendung:
$hdGnu = disk_free_space("/");
echo "Diskspace left on / ".getSymbolByQuantity($hdGnu);