PHP

php filesize能转换成字节吗

小樊
81
2024-11-21 20:54:37
栏目: 编程语言

是的,filesize() 函数返回的文件大小是以字节为单位的

<?php
$filename = 'example.txt';
$file_size_bytes = filesize($filename);
echo "The size of the file '$filename' is $file_size_bytes bytes.";
?>

在这个示例中,filesize() 函数返回了文件 example.txt 的大小(以字节为单位),然后将其存储在变量 $file_size_bytes 中。最后,使用 echo 语句输出文件大小。

0
看了该问题的人还看了