警告:无法修改标头信息 - 标头已由第 19 行 /sms.php 中的(输出开始于 /sms.php:9)发送
当我在下面使用此代码时发生这种情况。我想将页面重定向到我网站中的另一个页面
$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);
header('Location: http://www.yoursite.com/new_page.html');
} catch(SoapFault $exception ) {
echo $exception->faultcode . ' : ' .$exception->faultstring . PHP_EOL;
}