PHP disk_total_space() 函数
❮ PHP 文件系统参考示例
返回 C: 目录的总大小(以字节为单位)
<?php
echo disk_total_space("C:");
?>
以上代码的输出可能为
119990349824
定义和使用
disk_total_space() 函数返回指定文件系统或磁盘的总大小(以字节为单位)。
提示:查看 disk_free_space() 以获取文件系统或磁盘的可用空间。
语法
disk_total_space(directory)
参数值
参数 | 描述 |
---|---|
directory | 必需。指定要检查的文件系统或磁盘。 |
技术细节
返回值 | 成功时返回总大小(以字节为单位),失败时返回 FALSE。 |
---|---|
PHP 版本 | 4.1+ |
❮ PHP 文件系统参考