PHP 获取文件大小 返回kb 函数
1PHP 获取文件大小 返回kb 函数
以下是获取文件大小并将其返回为KB的PHP函数:

```php
function getFileSizeKB($filename) {
$size = filesize($filename);
$kbSize = $size / 1024; // convert bytes to KB
return round($kbSize, 2); // round to 2 decimal places
}
```

使用方法:

```php
$filesize = getFileSizeKB('example.txt');
echo $filesize . ' KB';
```

其中,`example.txt` 是要获取大小的文件名。 `round()` 函数用于将结果舍入为两位小数。
本页由《梦行文档》生成

 

name完成
30