我正在使用 Twilio API 发送短信。我正在尝试更改它,以便我可以从 mysql 结果发送到收件人列表。
给出的示例代码是:
$people = array(
"+14155551212" => "First Lastname",
);
我的代码是:
$people = array(
while($res = mysql_fetch_array($usersphone)) {
$people[$res['UserMobile']] = $res['UserFirstName'];
}
);
语法不好,但我不知道在哪里。