今天早些时候解决了这个问题。在代码的第二行if($this->has_lead_type_selected($person['ID'],$tags))
;覆盖if($this->has_lead_type_selected($person['ID'],$tags))
导致全局$标签覆盖代码下部的$ tag。所以全局var是空的,因为它是在实际的$ tags var被赋予函数之前。
当HTML表单提交到我们的REST API时,它会发送名为' lead_type'这些只是识别发送潜在客户的标签。
用户从标签云中选择这些标签。如果表单通过其中一个标记(lead_type)提交给API,并且我们的任何用户个人资料都与这些标记匹配(在标记云中选择这些标记)。向用户发送短信通知他们。
所有内容都发布到数据库表格,API可以运行,但即使用户没有匹配的标签,每个用户仍会收到短信。如果我注释掉该行(我将在下面显示其余代码),则会向所有人发送短信。如果我将其保留为未注释,则不会向任何人发送短信。
}
private function has_lead_type_selected($user_id,$tags){
global $db,$tags;
$lead_types = explode(',',$tags);
$user_lead_types = $db
->where('user_id',$user_id)
->where('lead_type_id', $lead_types, 'IN')
->get('user_lead_types');
return sizeof($user_lead_types) > 0;
}
//Get lead types from API post and create $tags
$lead_types = $this->request['leadData']['lead_types'];
$strTags = array();
if(!empty($lead_types))
$strTags = explode(',',$lead_types);
$tags = '';
$lead_types_objects = $db->where('lead_type', $strTags,'IN')->get('lead_types');
foreach($lead_types_objects as $l)
{
if($tags=='')
$tags = $l['id'];
else
$tags.=',' .$l['id'];
}
以下是代码的流程。
global $sid,$token;
$client = new Twilio\Rest\Client($sid, $token);
$content_data = [
"leadname" => $posted_name,
"leadzipcode" => $posted_zipcode,
"leadphone" => $posted_phone,
"leademail" => $posted_email,
"leadtags" => $lead_types
];
//Replace Content
foreach($content_data as $index => $value){
$lead_sms_template = str_replace("|".$index."|", $value, $lead_sms_template);
}
// Step 5: Loop over all our friends. $number is a phone number above, and
// $name is the name next to it
foreach ($people as $person) {
try{
//commented temporarily -- uncommented below to try to solve issue of texting everyone still
if($this->has_lead_type_selected($person['ID'],$tags))
{
$number = $person['phone_no'];
$name = $person['first_name']. ' '. $person['last_name'];
如果表单标签与用户云标签匹配,我们会向他们发送短信。
numpy.arrange
感谢您的帮助。
答案 0 :(得分:2)
在第二行代码全局$db
,$tags
;覆盖了if($this->has_lead_type_selected($person['ID'],$tags))
,导致全局$tags
覆盖代码下半部分$tags
。所以全局var是空的,因为它是在实际$tags
var被赋予函数之前。