我有这样的东西
<td><?php echo $row_rsPhoto['size']; ?></td>
并以字节为单位显示文件大小,可以以千字节为单位,我正在尝试这样做 - 函数
public function size_as_kb()
{
if ($this->size < 1024) {
return "{$this->size} bytes";
} elseif ($this->size < 1048576) {
$size_kb = round($this->size/1024);
return "{$size_kb} KB";
} else {
$size_mb = round($this->size/1048576, 1);
return "{$size_mb} MB";
}
}
我不知道这是否有效以及如何将其 $row_rsPhoto['size'];
与功能联系起来
预先感谢您的帮助