我是 PHP 的新手,我正在尝试从像这样的 web 服务的响应中读取:http: //voip.letscall.pt/VSServices/sendsms.ashx ?login=123456&pass=3663&from=john&to=peter&text=你好
但到目前为止,我还没有成功阅读它得到的回复。这是我到目前为止得到的
<?php
header("Content-Type: text/plain;charset=utf-8");
$url = 'http://voip.letscall.pt/VSServices/sendsms.ashx?login=123456&pass=3663&from=john&to=peter&text=hello';
$xml = simplexml_load_file($url);
echo $xml;
?>
提前致谢!!