当前位置: 首页 > 网络学院 > 服务端脚本教程 > PHP > diskfreespace() 函数
The diskfreespace() function returns the free space, in bytes, of the specified directory.
diskfreespace()函数的作用是:返回指定目录中的可用空间,以字节数表示。
This function is an alias of the disk_free_space() function.
这个函数的另外一种写法是:disk_free_space()
diskfreespace(directory) |
Parameter 参数 | Description 描述 |
---|---|
directory | Required. Specifies the directory to check 必要参数。指定目录对象 |
<?php echo diskfreespace("C:"); ?> |
The output of the code above could be:
上述代码将输出下面的结果:
109693288448 |