PHP | disk_total_space 函数
Lasted 2020-12-30 19:41:18
disk_total_space 返回给定目录的磁盘总大小。
disk_free_space() 函数给出一个包含有一个目录的字符串,本函数将根据相应的文件系统或磁盘分区返回所有的字节数。返回的是该目录所在的磁盘分区的总大小,因此在给出同一个磁盘分区的不同目录作为参数所得到的结果完全相同。
函数定义
disk_total_space(string $directory):float
// 源文件位于:ext/standard/filestat.c
# 函数定义
static int php_disk_total_space(char *path, double *space) /* {{{ */
#if defined(WINDOWS) /* {{{ */
{
...
if (GetDiskFreeSpaceExW(pathw, &FreeBytesAvailableToCaller, &TotalNumberOfBytes, &TotalNumberOfFreeBytes) == 0) {
char *err = php_win_err();
php_error_docref(NULL, E_WARNING, "%s", err);
php_win_err_free(err);
PHP_WIN32_IOUTIL_CLEANUP_W()
return FAILURE;
}
/* i know - this is ugly, but i works */
*space = TotalNumberOfBytes.HighPart * (double) (((zend_ulong)1) << 31) * 2.0 + TotalNumberOfBytes.LowPart;
PHP_WIN32_IOUTIL_CLEANUP_W()
return SUCCESS;
}
/* }}} */
#elif defined(OS2) /* {{{ */
{
...
if (DosQueryFSInfo( drive ? drive - 64 : 0, FSIL_ALLOC, &fsinfo, sizeof( fsinfo ) ) == 0) {
bytestotal = (double)fsinfo.cbSector * fsinfo.cSectorUnit * fsinfo.cUnit;
*space = bytestotal;
return SUCCESS;
}
return FAILURE;
}
/* }}} */
#else /* {{{ if !defined(OS2) && !defined(WINDOWS) */
{
...
#if defined(HAVE_SYS_STATVFS_H) && defined(HAVE_STATVFS)
if (statvfs(path, &buf)) {
php_error_docref(NULL, E_WARNING, "%s", strerror(errno));
return FAILURE;
}
if (buf.f_frsize) {
bytestotal = (((double)buf.f_blocks) * ((double)buf.f_frsize));
} else {
bytestotal = (((double)buf.f_blocks) * ((double)buf.f_bsize));
}
#elif (defined(HAVE_SYS_STATFS_H) || defined(HAVE_SYS_MOUNT_H)) && defined(HAVE_STATFS)
if (statfs(path, &buf)) {
php_error_docref(NULL, E_WARNING, "%s", strerror(errno));
return FAILURE;
}
bytestotal = (((double)buf.f_bsize) * ((double)buf.f_blocks));
#endif
*space = bytestotal;
return SUCCESS;
}
#endif
参数
- checkdirectory - 文件系统目录或者磁盘分区。不能作用于远程文件,被检查的文件必须是可通过服务器的文件系统访问的。
返回值
- checkfloat - 返回目录磁盘总大小字节数。失败时返回 false。
示例1: - 使用 disk_total_space() 函数获取给定目录的磁盘总大小。
<?php
/**
* PHP 使用 disk_free_space() 函数获取给定目录的可用空间。
*
* @since Version 1.0.0
* @filesource
*/
// 获取目录的字节数
$bytes = disk_total_space("/data");
echo 'Total:: '.$bytes.PHP_EOL;
echo 'Total:: '.humanReadable($bytes).PHP_EOL;
// 友好显示字节数
function humanReadable($bytes) {
$prefix = array('B', 'KB', 'MB', 'GB', 'TB', 'PB', 'EB', 'ZB', 'YB');
$base = 1024;
$class = min((int)log($bytes , $base) , count($prefix) - 1);
return sprintf('%1.2f' , $bytes / pow($base, $class)) . $prefix[$class];
}
Total:: 42007232512 Total:: 39.12GB