使用php xml获取博客最新发布链接

时间:2017-10-07 20:35:40

标签: php xml

我正在使用以下代码。此代码显示标题,时间和内容,不显示我的帖子链接。另外,我想显示最新的更新帖子链接,但这并没有显示我链接。

请检查此代码。

<?php
$file="https://*******.blogspot.com/atom.xml";
$xml = simplexml_load_file($file);
foreach ( $xml->entry as $foo ) {
    echo '<h2>' . $foo->title . '</h2>';
    echo '<p>' . $foo->updated . '</p>';
    echo '<p>' . $foo->content . '</p>';
    foreach ( $foo->link as $link ) {
        $type = (string) $link->attributes()->{'type'};
        if ( $type == 'text/html' ) {
            echo (string) $link->attributes()->{'title'};;
        }
    }
}
?>

1 个答案:

答案 0 :(得分:0)

您可以像访问数组一样访问元素的属性,因此您的代码应该看起来像......

{{1}}