在线文档教程
PHP
文件系统 | File System

disk_total_space

disk_total_space

(PHP 4 >= 4.1.0, PHP 5, PHP 7)

disk_total_space - 返回文件系统或磁盘分区的总大小

描述

float disk_total_space ( string $directory )

给定一个包含目录的字符串,该函数将返回相应文件系统或磁盘分区的总字节数。

参数

directory

文件系统或磁盘分区的目录。

返回值

以float形式返回字节总数或在失败时返回FALSE。

例子

示例#1 disk_total_space()示例

<?php // $ds contains the total number of bytes available on "/" $ds = disk_total_space("/" // On Windows: $ds = disk_total_space("C:" $ds = disk_total_space("D:" ?>

注意

注意:此功能在远程文件上不起作用,因为要检查的文件必须可通过服务器的文件系统访问。

扩展内容

  • disk_free_space() - 返回文件系统或磁盘分区上的可用空间

← disk_free_space

diskfreespace →