У меня есть smpp- php код. Этот код отправляет только одно количество смс, он не может отправлять массовые смс. .. Можно отправлять только смс с одной покупкой, а не оптом. Некоторые люди говорят мне использовать submit_multi. Как мне это сделать? Пожалуйста, помогите мне ... Ссылка <<a href="https://github.com/rayed/smpp_php" rel="nofollow noreferrer">https://github.com/rayed/smpp_php
<?php //this send .php
include 'class.smpp.php';
$message = $_POST['message'];
$allNumber = explode(",",$_REQUEST['numbers']);
$numbers = [];
foreach ( $allNumber as $numb )
{
if ( count($numbers) == 100 )
{
send($numbers, $message);
$numbers = [];
}
array_push($numbers, $numb);
}
send($numbers, $message);
function send($numbers, $message)
{
$src = rand(0000,9999);
$s = new smpp();
$s->debug=1;
$s->open("xxxx", 2775, "xxxx", "xxxx");
$utf = true;
$message = iconv("UTF-8","UCS-2//IGNORE",$message);
$sendNumb = join(",", $numbers);
$s->send_long($src, $sendNumb, $message, $utf);
$s->close();
}
?>```