验证文件大小是否在允许范围内
bool Core_Upload::is_allowed_filesize( )
bool
protected function is_allowed_filesize()
{
if ($this->config['max_size'] > 0 && $this->file['size'] > $this->config['max_size'])
{
return false;
}
else
{
return true;
}
}