我是靠谱客的博主 内向黑米,这篇文章主要介绍PHP filesize() 函数,现在分享给大家,希望可以做个参考。

filesize

作用:函数返回指定文件的大小

语法

复制代码
1
filesize(filename)
登录后复制

参数

filename:必需。规定要检查的文件。

返回值

返回文件大小的字节数,如果出错返回 FALSE 并生成一条 E_WARNING 级的错误。

filesize 示例

示例一

复制代码
1
2
3
4
5
6
7
8
<?php // 输出类似:somefile.txt: 1024 bytes $filename = 'somefile.txt'; echo $filename . ': ' . filesize($filename) . ' bytes'; ?>
登录后复制

示例二

复制代码
1
2
3
4
5
6
7
<?php function human_filesize($bytes, $decimals = 2) { $sz = 'BKMGTP'; $factor = floor((strlen($bytes) - 1) / 3); return sprintf("%.{$decimals}f", $bytes / pow(1024, $factor)) . @$sz[$factor]; } ?>
登录后复制

示例三

复制代码
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<?php /** * Converts bytes into human readable file size. * * @param string $bytes * @return string human readable file size (2,87 Мб) * @author Mogilev Arseny */ function FileSizeConvert($bytes) { $bytes = floatval($bytes); $arBytes = array( 0 => array( "UNIT" => "TB", "VALUE" => pow(1024, 4) ), 1 => array( "UNIT" => "GB", "VALUE" => pow(1024, 3) ), 2 => array( "UNIT" => "MB", "VALUE" => pow(1024, 2) ), 3 => array( "UNIT" => "KB", "VALUE" => 1024 ), 4 => array( "UNIT" => "B", "VALUE" => 1 ), ); foreach($arBytes as $arItem) { if($bytes >= $arItem["VALUE"]) { $result = $bytes / $arItem["VALUE"]; $result = str_replace(".", "," , strval(round($result, 2)))." ".$arItem["UNIT"]; break; } } return $result; } ?>
登录后复制

示例四

复制代码
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<?php /** * Return file size (even for file > 2 Gb) * For file size over PHP_INT_MAX (2 147 483 647), PHP filesize function loops from -PHP_INT_MAX to PHP_INT_MAX. * * @param string $path Path of the file * @return mixed File size or false if error */ function realFileSize($path) { if (!file_exists($path)) return false; $size = filesize($path); if (!($file = fopen($path, 'rb'))) return false; if ($size >= 0) {//Check if it really is a small file (< 2 GB) if (fseek($file, 0, SEEK_END) === 0) {//It really is a small file fclose($file); return $size; } } //Quickly jump the first 2 GB with fseek. After that fseek is not working on 32 bit php (it uses int internally) $size = PHP_INT_MAX - 1; if (fseek($file, PHP_INT_MAX - 1) !== 0) { fclose($file); return false; } $length = 1024 * 1024; while (!feof($file)) {//Read the file until end $read = fread($file, $length); $size = bcadd($size, $length); } $size = bcsub($size, $length); $size = bcadd($size, strlen($read)); fclose($file); return $size; }
登录后复制

推荐教程:《PHP》

以上就是PHP filesize() 函数的详细内容,更多请关注靠谱客其它相关文章!

最后

以上就是内向黑米最近收集整理的关于PHP filesize() 函数的全部内容,更多相关PHP内容请搜索靠谱客的其他文章。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(108)

评论列表共有 0 条评论

立即
投稿
返回
顶部