ThinkChat2.0新版上线,更智能更精彩,支持会话、画图、阅读、搜索等,送10W Token,即刻开启你的AI之旅 广告
# PHP disk_free_space() 函数 ## 定义和用法 disk_free_space() 函数返回目录中的可用空间 ### 语法 ``` disk_free_space(directory) ``` | 参数 | 描述 | | --- | --- | | directory | 必需。规定要检查的目录。 | ### 说明 _directory_ 参数是一个目录的字符串。该函数将根据相应的文件系统或磁盘分区返回可用的字节数。 ## 例子 ``` <?php echo disk_free_space("C:"); ?> ``` 输出: ``` 209693288558 ```