您现在的位置是:首页 > PHP函数

李清波 2021-06-17 PHP函数 1179 复制当前网址

diskfreespace



PHP diskfreespace() 函数

定义和用法

diskfreespace() 函数返回目录中的可用空间。该函数是 disk_free_space() 函数的别名。


语法

diskfreespace(directory)

参数描述
directory必需。规定要检查的目录。


说明

directory 参数是一个目录的字符串。该函数将根据相应的文件系统或磁盘分区返回可用的字节数。


例子

<?php
echo diskfreespace("C:");
?>

输出:

209693288558


文章来源:http://liqingbo.com/blog-580.html

上一篇:fclose

下一篇:disk_total_space

评论