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

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

disk_free_space

PHP disk_free_space() 函数

定义和用法

disk_free_space() 函数返回目录中的可用空间


语法

disk_free_space(directory)

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


说明

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


例子

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

输出:

209693288558


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

上一篇:disk_total_space

下一篇:dirname

评论