PHP disk_total_space函数——返回磁盘分区总共字节数,disk_total_space函数可根据相应的文件系统或磁盘分区返回该文件系统或磁盘分区总共的字节数。
PHP disk_total_space函数 语法
float disk_total_space(string directory)
参数directory用来指定文件系统或磁盘分区。
PHP disk_total_space函数 示例
应用disk_total_space()函数获取Windows系统中C盘的总共空间
代码如下:
<?php
echo disk_total_space("c:/");
?>
应用disk_total_space()函数获取Linux系统中主目录的总共空间
代码如下:
<?php
echo disk_total_space("/");
?>