Ver Fonte

上传表删除短信客户

shenzhipeng há 2 anos atrás
pai
commit
03fb4e7bba

+ 2 - 2
application/module/ctrl/Sms_customer_list_adminAction.class.php

@@ -450,13 +450,13 @@ class Sms_customer_list_adminAction extends Action{
 					if(!empty($array[0])){
 						$tel = trim($array[0]);
 
-						$telsArr[] = strval($tel);
+						$telsArr[] = $tel;
 						
 					}
 
 				}
 				if($telsArr) {
-					$telsStr = implode(',', $telsArr);
+					$telsStr = "'" . implode("','", $telsArr) . "'";
 					$result = $admin->deleteSmsCustomerByTel($telsStr);
 					$info = '删除数据成功';
 				}