这是批量 SMS 发送代码,它运行良好并发送消息,但发送消息后,Web 浏览器将我重定向到白页中的代码。
我希望在发送消息后重定向到我网站上的另一个页面。
$username = '';
$password = '';
$client = new SoapClient('http://www.xxxx/xx');
$numbers = 'xxxx ';
$message =
'hi this is a test
!@#$%^&*
';
$senderName = 'xxxxxx';
try {
$response = $client->sendSMS($username, $password, $numbers, $message, $senderName);
var_dump($response);
} catch(SoapFault $exception ) {
echo $exception->faultcode . ' : ' .$exception->faultstring . PHP_EOL;
}