当前位置: 首页 > 网络学院 > 服务端脚本教程 > PHP > disk_free_space() 函数
The disk_free_space() function returns the free space, in bytes, of the specified directory.
disk_free_space()函数的作用是:返回指定目录的可用空间,以字节数表示。
disk_free_space(directory) |
Parameter 参数 | Description 描述 |
---|---|
directory | Required. Specifies the directory to check 必要参数。指定目录对象 |
<?php echo disk_free_space("C:"); ?> |
The output of the code above could be:
109693288448 |