我尝试上传大于2mb的图像文件,但出现错误:PHP严格标准:仅应在/home/aaaa/public_html/includes/lib/lib.account_pictures.php中通过引用传递变量362
我从MultiPHP INI编辑器在Cpanel上将upload_max_filesize和post_max_size增大为8MB
此行:$ fext = strtolower(end(explode('。',$ file ['name']))));
$fext = strtolower(end(explode('.', $file['name'])));
$fextlen = strlen($fext . $member_id) + 1;
//------------------------------------------------
// Check file format
//------------------------------------------------
if (!@in_array($fext, array('gif', 'jpg', 'jpeg', 'png')))
{
$TEMPLATE->set_message("error", $LANG['pictures']['invalid_file'], 0, 0);
if ( $nojavascript ) { return 0; } else { die('error'); };
}
//------------------------------------------------
// Check file size
//------------------------------------------------
if ($file['size'] >= ($PREFS->conf['max_image_size'] * 1024))
{
($LANG['pictures']['file_too_big'] = str_replace("%size%", $PREFS->conf['max_image_size'], $LANG['pictures']['file_too_big']));
$TEMPLATE->set_message("error", ($LANG['pictures']['file_too_big']), 0, 0);
if ( $nojavascript ) { return 0; } else { die('error'); };
}
我需要上传大于2mb但小于8mb的图片