if(!empty($img_path)){
$size = getimagesize($img_path);
$img_width = isset($size[0]) ? $size[0] : 0;
$img_height = isset($size[1]) ? $size[1] : 0;
if (400 != $img_width || 244 != $img_height) {
GF::_result('','0','品牌图片尺寸必须是400x244,请重新选择图片。');
exit();
}
}
$str = preg_replace('/[\x80-\xff]{1,3}/', ' ', $brand_data['brand_context'], -1);
$brand_context_num = strlen($str);
if($brand_context_num > 270){
GF::_result('','0','品牌描述字数必须小于270,请重新填写');
exit();
}
$size = getimagesize($img_path);
$img_width = isset($size[0]) ? $size[0] : 0;
$img_height = isset($size[1]) ? $size[1] : 0;
if (400 != $img_width || 244 != $img_height) {
GF::_result('','0','品牌图片尺寸必须是400x244,请重新选择图片。');
exit();
}
}
$str = preg_replace('/[\x80-\xff]{1,3}/', ' ', $brand_data['brand_context'], -1);
$brand_context_num = strlen($str);
if($brand_context_num > 270){
GF::_result('','0','品牌描述字数必须小于270,请重新填写');
exit();
}