PHP中的disk_total_space()函数是一个内置函数, 用于返回指定目录的总空间。 disk_total_space()函数表示总空间(以字节为单位)。它返回文件系统或磁盘分区上的总空间。
disk_total_space()函数返回作为字符串输入的指定目录的相应文件系统或磁盘分区上的字节总数。
语法如下:
float disk_total_space ( string $directory )
参数:PHP中的disk_total_space()函数仅接受一个参数$目录这是目录。
【PHP如何使用disk_total_space()函数(代码示例)】返回值:它返回文件系统或磁盘分区上的总空间。
错误与异常:
- 如果将文件名作为参数而不是目录, 则PHP中的disk_total_space()函数可能会给出不正确的结果。
- PHP中的disk_total_space()函数不适用于远程文件, 仅适用于服务器文件系统可访问的文件。
Input : disk_total_space("D:");
Output : 10969328844798729Input : disk_total_space("C:");
Output : 104379834795739795
下面的程序说明了disk_total_space()函数:
程序1:
<
?php// specifying directory to check for total space
echo disk_total_space( "D:" );
?>
输出如下:
10969328844798729
程序2:
<
?php// specifying directory to
// check for total space
$space = disk_total_space( "C:" );
echo "C: drive has a total capacity
of $space bytes.";
?>
输出如下:
C: drive has a total capacity of 104379834795739795 bytes.
参考:
http://php.net/manual/en/function.disk-total-space.php
推荐阅读
- Materialize CSS如何使用预载器(用法示例)
- Python中的全局关键字global的用法示例
- 8086微处理器的引脚图详细指南
- Perl如何使用哈希运算(分析和示例)
- Win8系统删除自带应用软件的办法
- 如何设置Win8系统打开窗口的默认大小?
- 怎样让Windows8.1系统开机时自动连接宽带?
- Win8系统位置按钮是灰色的如何处理?
- Win8系统一直提示虚拟内存不足怎样应对?