标签: php image
我想检查已上传到服务器的图片大小: 伪代码
if (checksize($image) >10mb { die }
我可以在php中做类似的事吗?谢谢:))_)
答案 0 :(得分:2)
假设$image是文件系统某处文件的路径:
$image
if(filesize($image) > (10 * 1024 * 1024)){ // is it larger than 10mb? die('too big'); }
答案 1 :(得分:1)
以下是PHP文档。
http://php.net/manual/en/function.filesize.php