如何在php

时间:2015-07-08 06:13:01

标签: php xml linkedin

好吧,我正在尝试解决这个问题,因为我连接了LUN并尝试访问php中的以下xml对象以打印出来并只访问名称。

XML输出:

SimpleXMLElement Object(
    [id] => MFNqBCcdLOLO
    [first-name] => James
    [last-name] => Bond
    [picture-url] => https://media.licdn.com/mpr/mprx/0_ljsdflkdsjfkjflkds
)

我上面打印的php代码是:

    $response = $OBJ_linkedin->profile('~:(id,first-name,last-name,picture-url)');
    print_r($response);
    if($response['success'] === TRUE) {
       $response['data'] = new SimpleXMLElement($response['linkedin']);
       //insert data...to linkedin_userprofile table...
       $linkedin = new Linkedinprofile();

       echo "<pre>" . print_r($response['data'], TRUE) . "</pre>";

现在,如果有人会帮忙:

$response['data']现在打印输出,我可以像这样访问$response['data'][first-name]

请大家,如果有人知道如何做到这一点,那么想要学习如何访问将会很棒。我也在网上多次搜索,但没有找到答案。先谢谢。:)

0 个答案:

没有答案