我也得到了宁静的网络服务响应。但是我无法正确解析它
我的代码看起来像这样
include 'RestClient.class.php';
error_reporting(E_ALL);
// Client Profile
$url = "http://localhost/lgen/index.php/api/client";
$ex = RestClient::get($url,array('requestType' =>'viewClientProfile',
'username' => 'uname',
'pass' =>'pass'));
echo $response = $ex->getResponse();
$xml = simplexml_load_string($response);
当print $ response我在浏览器上获取数据但是在尝试解析时却没有得到任何类型的数据
答案 0 :(得分:0)
echo $response = $ex->getResponse();
您正在同时创建并回显变量。
试试这个:
$xml = simplexml_load_string($ex->getResponse());
var_dump($xml);