<?php
/*
@desc:获取文件大小
@author <lee> [<complet@163.com>]
@param name 文件名
@return size 文件大小 byte
*/
function getfilesize($name){
$content = file_get_contents($name);
$size = strlen($content);
return $size;
}
$ret = getfilesize(‘01.jpg‘);
echo $ret;
13614
原文地址:http://blog.51cto.com/12173069/2126596