Skip to content

Instantly share code, notes, and snippets.

@bran921007
Created February 1, 2015 05:50
Show Gist options
  • Save bran921007/c4a8038db0009386e6fb to your computer and use it in GitHub Desktop.
Save bran921007/c4a8038db0009386e6fb to your computer and use it in GitHub Desktop.
PHP: calcular espacio disponible del servidor
$bytes = disk_free_space("/");
$base = 1024;
$libre = ($bytes/$base)/$base; // en MB
echo $libre.' MB<br>'; // Imprime por ej: 54477.0546875 MB
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment