PHP速学教程(入门到精通)
PHP怎么学习?PHP怎么入门?PHP在哪学?PHP怎么学才快?不用担心,这里为大家提供了PHP速学教程(入门到精通),有需要的小伙伴保存下载就能学习啦!
// A much better and accurate version can be found // in Aidan's PHP Repository: // http://aidanlister.com/repos/v/function.size_readable.php /** * Returns a human readable filesize * * @author wesman20 (php.net) * @author Jonas John * @version 0.3 * @link http://www.jonasjohn.de/snippets/php/readable-filesize.htm */ function HumanReadableFilesize($size) { // Adapted from: http://www.php.net/manual/en/function.filesize.php $mod = 1024; $units = explode(' ','B KB MB GB TB PB'); for ($i = 0; $size > $mod; $i++) { $size /= $mod; } return round($size, 2) . ' ' . $units[$i]; }
以上就是PHP 使用适合阅读的格式显示文件大小的内容,更多相关内容请关注PHP中文网(www.php.cn)!
php免费学习视频:立即学习
踏上前端学习之旅,开启通往精通之路!从前端基础到项目实战,循序渐进,一步一个脚印,迈向巅峰!
已抢7213个
抢已抢94859个
抢已抢14827个
抢已抢52072个
抢已抢194765个
抢已抢87280个
抢