This commit is contained in:
yangduo 2025-03-20 16:16:03 +08:00
parent a71724dd1d
commit 5a9f7230c7
5 changed files with 15 additions and 15 deletions

View File

@ -55,7 +55,7 @@ class Privilege
) )
); );
if (!$row || $row['vip_info'] == NULL) { if (!$row || is_null($row['vip_info'])) {
return 0; return 0;
} }

View File

@ -37,7 +37,7 @@ class RechargeActivity
); );
$activity = array(); $activity = array();
if ($row && $row['activity'] != null && $row['activity'] != '') { if ($row && !is_null($row['activity']) && !empty($row['activity'])) {
$activity = json_decode($row['activity'], true); $activity = json_decode($row['activity'], true);
} }

View File

@ -373,7 +373,7 @@ class MailController
return; return;
} }
if ($rsp == null || $rsp == '') { if (is_null($rsp) || empty($rsp)) {
phpcommon\sendError(ERR_RETRY, '系统繁忙2'); phpcommon\sendError(ERR_RETRY, '系统繁忙2');
return; return;
} }
@ -420,7 +420,7 @@ class MailController
return; return;
} }
if ($rsp == null || $rsp == '') { if (is_null($rsp) || empty($rsp)) {
phpcommon\sendError(ERR_RETRY, '系统繁忙4'); phpcommon\sendError(ERR_RETRY, '系统繁忙4');
return; return;
} }

View File

@ -217,7 +217,7 @@ trait RechargeActivity
) )
); );
if ($rechargerow['vip_info'] == null || $rechargerow['vip_info'] == '') { if (is_null($rechargerow['vip_info']) || empty($rechargerow['vip_info'])) {
phpcommon\sendError(ERR_USER_BASE + 1, '没月卡'); phpcommon\sendError(ERR_USER_BASE + 1, '没月卡');
return; return;
} }
@ -354,7 +354,7 @@ trait RechargeActivity
) )
); );
if ($rechargerow['activity'] == null || $rechargerow['activity'] == '') { if (is_null($rechargerow['activity']) || empty($rechargerow['activity'])) {
phpcommon\sendError(ERR_USER_BASE + 1, '没参与活动'); phpcommon\sendError(ERR_USER_BASE + 1, '没参与活动');
return; return;
} }

View File

@ -78,7 +78,7 @@ class RechargeController
return; return;
} }
if ($rsp == null || $rsp == '') { if (is_null($rsp) || empty($rsp)) {
phpcommon\sendError(ERR_RETRY, '系统繁忙2'); phpcommon\sendError(ERR_RETRY, '系统繁忙2');
return; return;
} }
@ -127,7 +127,7 @@ class RechargeController
return; return;
} }
if ($rsp == null || $rsp == '') { if (is_null($rsp) || empty($rsp)) {
phpcommon\sendError(ERR_RETRY, '系统繁忙 2'); phpcommon\sendError(ERR_RETRY, '系统繁忙 2');
return; return;
} }
@ -176,7 +176,7 @@ class RechargeController
$rechargeactivity = new classes\RechargeActivity(); $rechargeactivity = new classes\RechargeActivity();
$activity = array(); $activity = array();
if ($rechargerow && $rechargerow['activity'] != null && $rechargerow['activity'] != '') { if ($rechargerow && !is_null($rechargerow['activity']) && !empty($rechargerow['activity'])) {
$activity = json_decode($rechargerow['activity'], true); $activity = json_decode($rechargerow['activity'], true);
} }
$rechargeactivity->updateActivityCur($activity, $diamonds, true); $rechargeactivity->updateActivityCur($activity, $diamonds, true);
@ -206,7 +206,7 @@ class RechargeController
$firstdata = $rechargerow['first_data']; $firstdata = $rechargerow['first_data'];
if ($firstrecharge) { if ($firstrecharge) {
if ($firstdata == NULL || $firstdata == '') { if (is_null($firstdata) || empty($firstdata)) {
$firstdata = $goodsid; $firstdata = $goodsid;
} else { } else {
$firstdata = $rechargerow['first_data'] . ',' . $goodsid; $firstdata = $rechargerow['first_data'] . ',' . $goodsid;
@ -304,7 +304,7 @@ class RechargeController
return; return;
} }
if ($rsp == null || $rsp == '') { if (is_null($rsp) || empty($rsp)) {
phpcommon\sendError(ERR_RETRY, '系统繁忙2'); phpcommon\sendError(ERR_RETRY, '系统繁忙2');
return; return;
} }
@ -434,7 +434,7 @@ class RechargeController
} }
$daily_purchase = $rechargerow['daily_purchase']; $daily_purchase = $rechargerow['daily_purchase'];
if ($daily_purchase == null || $daily_purchase == '') { if (is_null($daily_purchase) || empty($daily_purchase)) {
return true; return true;
} }
@ -615,7 +615,7 @@ class RechargeController
$firstdata = $rechargerow['first_data']; $firstdata = $rechargerow['first_data'];
if ($firstrecharge) { if ($firstrecharge) {
if ($firstdata == NULL || $firstdata == '') { if (is_null($firstdata) || empty($firstdata)) {
$firstdata = $goodsid; $firstdata = $goodsid;
} else { } else {
$firstdata = $rechargerow['first_data'] . ',' . $goodsid; $firstdata = $rechargerow['first_data'] . ',' . $goodsid;
@ -682,7 +682,7 @@ class RechargeController
); );
} else { } else {
$vip_info = array(); $vip_info = array();
if ($rechargerow['vip_info'] != NULL) { if (!is_null($rechargerow['vip_info'])) {
$vip_info = json_decode($rechargerow['vip_info'], true); $vip_info = json_decode($rechargerow['vip_info'], true);
} }
$found = false; $found = false;
@ -784,7 +784,7 @@ class RechargeController
); );
} else { } else {
$daily_purchase = array(); $daily_purchase = array();
if ($rechargerow['daily_purchase'] != NULL) { if (!is_null($rechargerow['daily_purchase'])) {
$daily_purchase = json_decode($rechargerow['daily_purchase'], true); $daily_purchase = json_decode($rechargerow['daily_purchase'], true);
} }
$found = false; $found = false;