PHP disk_free_space() 函数
PHP disk_free_space() 函数
完整的 PHP Filesystem 参考手册定义和用法
disk_free_space() 函数返回指定目录的可用空间,以字节为单位。
语法
disk_free_space(directory)
参数 | 描述 |
---|---|
directory | 必需。规定要检查的目录。 |
实例
<?php
echo disk_free_space("C:");
?>
echo disk_free_space("C:");
?>
上面的代码将输出:
109693288448
完整的 PHP Filesystem 参考手册
相关文章
- PHP 教程
- PHP 常量
- PHP 运算符
- PHP 数组
- PHP While 循环
- PHP 函数
- PHP 发送电子邮件
- PHP array_diff() 函数
- PHP array_diff_ukey() 函数
- PHP array_intersect_assoc() 函数
- PHP array_key_first() 函数
- PHP array_merge_recursive() 函数
- PHP array_slice() 函数
- PHP array_udiff() 函数
- PHP array_values() 函数
- PHP arsort() 函数
- PHP extract() 函数
- PHP FTP 函数
- PHP 5 Math 函数
- PHP 5 MySQLi 函数