如何使用simplexmlelement或其他XML函数从数组中检索节点?

时间:2012-04-16 15:22:46

标签: php api xml-parsing simplexml linkedin

我正在使用Linkedin API - > https://developer.linkedin.com/documents/profile-fields#company

一切正常,我可以毫无问题地连接到API。当我请求一些数据时,Bellow会跟踪API返回的数据。

这是我的请求(我不会发布整个代码,它超过500行)但它是我想要检索的内容。

$response2 = $OBJ_linkedin->profile('~:(recommendations-received)');
if($response2['success'] === TRUE) 
{
   $response2['linkedin'] = new SimpleXMLElement($response2['linkedin']);
   echo "<pre>" . print_r($response2['linkedin'], TRUE) . "</pre>";
}
else 
{
   // request failed
   echo "Error: <br />RESPONSE:<br /><br /><pre>" . print_r($response2) . "</pre>";
}

上面跟着回复:

SimpleXMLElement Object
(
    [recommendations-received] => SimpleXMLElement Object
        (
            [@attributes] => Array
                (
                    [total] => 1
                )

            [recommendation] => SimpleXMLElement Object
                (
                    [id] => 0123456
                    [recommendation-type] => SimpleXMLElement Object
                        (
                            [code] => service-provider
                        )

                    [recommendation-text] => Here come the recommendation text from the API.
                    [recommender] => SimpleXMLElement Object
                        (
                            [id] => npAnFGrTys
                            [first-name] => John
                            [last-name] => Doe
                        )

                )

        )

)

现在我的问题:

如何只检索和打印[推荐 - 文本]节点?我已经只调用收到的建议$response2 = $OBJ_linkedin->profile('~:(recommendations-received)');但它返回了整个内容,然后如何只获取[recommendation-text] ???

我尝试使用simplexmlelement(http://br2.php.net/manual/en/class.simplexmlelement.php),但没有成功。

提前感谢任何帮助。

[结果]

我将发布给我的答案。

我正在使用以下代码@Mircea:

$sxml = new SimpleXMLElement($response2['linkedin']); 
$res = $sxml->xpath('recommendations-received/recommendation/recommendation-text'); 
echo $res[0];

而不是这段代码:

   $response2['linkedin'] = new SimpleXMLElement($response2['linkedin']);
   echo "<pre>" . print_r($response2['linkedin'], TRUE) . "</pre>";

现在的区别在于我正在使用xpath方法在simpleXML节点中搜索匹配的子节点。谢谢@Mircea。

2 个答案:

答案 0 :(得分:2)

你应该尝试simplexmlelement http://www.php.net/manual/en/simplexmlelement.xpath.php的xpath函数。我认为获得你想要的核心方法是:

$sxml->xpath('recommendations-received/recommendation/recommendation-text')

它返回一个数组,所以你应该迭代它(看看那个页面上的例子)。 xpath查询是这样的,它最终取决于收到的xml的结构。

希望它有所帮助。

答案 1 :(得分:0)

访问recommendation-text属性将通过以下方式完成:

foreach($response2->{recommendations-received} as $recommendation) {
  $recommendation->{recommendation-text}
}