我有一个应用程序正在构建并在其中实现一个短信API,但它发送到几个数字,当我从数据库中选择所有并发送时,它应该发送到大约1100个数字,但它什么也没做.
我发现它没有发送,因为数字被传递到url的长度,因为我回显了数字并将它们复制到之前发送的textarea中.
我也将数量减少到大约一百五十,但它没有抛出错误但没有发送,我该如何纠正这一点.
请参阅下面的发送示例代码
$phone_group_total = $phone_numbers.", ".$send_it.", ".$selected_staffs; function httpRequest($fields, $sendpage){ $curl = curl_init($sendpage); curl_setopt($curl, CURLOPT_POST, true); curl_setopt($curl, CURLOPT_POSTFIELDS, $fields); curl_setopt($curl, CURLOPT_RETURNTRANSFER, true); $result = curl_exec($curl); curl_close($curl); $sendpage ="http://smsexperience.com/components/com_spc/smsapi.php?"; $sendsms ="username=user&password=pass"; $sendsms .="&sender=$sender_id"; $sendsms .="&recipient=".$phone_group_total; $sendsms .="&message=$message"; httpRequest($sendsms, $sendpage);
我为表单提交使用了get方法,我尝试使用post并且我的消息没有发送.如何修复它并发送到大量设置.谢谢.