PHP diskfreespace() 函数
PHP diskfreespace() 函数
完整的 PHP Filesystem 参考手册定义和用法
diskfreespace() 函数返回指定目录的可用空间,以字节为单位。
该函数是 disk_free_space() 函数的别名。
语法
diskfreespace(directory)
参数 | 描述 |
---|---|
directory | 必需。规定要检查的目录。 |
实例
<?php
echo diskfreespace("C:");
?>
echo diskfreespace("C:");
?>
上面的代码将输出:
109693288448
完整的 PHP Filesystem 参考手册
相关文章
- PHP 安装
- PHP echo 和 print 语句
- PHP 数据类型
- PHP 运算符
- PHP 数组排序
- PHP $_POST 变量
- PHP date() 函数
- PHP 文件处理
- PHP 发送电子邮件
- PHP array_diff_key() 函数
- PHP array_multisort() 函数
- PHP array_pop() 函数
- PHP array_product() 函数
- PHP array_search() 函数
- PHP array_uintersect_uassoc() 函数
- PHP array_unique() 函数
- PHP in_array() 函数
- PHP usort() 函数
- PHP 5 Array 函数
- PHP 杂项 函数