Created
February 1, 2015 05:50
-
-
Save bran921007/c4a8038db0009386e6fb to your computer and use it in GitHub Desktop.
PHP: calcular espacio disponible del servidor
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$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