当前位置: 首页 > 网络学院 > 服务端脚本教程 > PHP > disk_total_space() 函数
The disk_total_space() function returns the total space, in bytes, of the specified directory.
disk_total_space()函数的作用是:返回一个指定目录的磁盘总大小,以字节数表示。
disk_total_space(directory) |
Parameter 参数 | Description 描述 |
---|---|
directory | Required. Specifies the directory to check 必要参数。指定目录对象 |
<?php echo disk_total_space("C:"); ?> |
The output of the code above could be:
上述代码将输出下面的结果:
119990349824 |