0

我也得到了宁静的 Web 服务响应。但我无法正确解析它

我的代码看起来像这样

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);

当打印 $response 我在浏览器上获取数据但在尝试解析它时没有得到任何类型的数据

4

1 回答 1

0
echo $response = $ex->getResponse();

您正在同时创建和回显一个变量。

尝试这个:

$xml = simplexml_load_string($ex->getResponse());
var_dump($xml);
于 2012-11-20T09:55:13.763 回答