simpleXML 循环条目

发布于 2024-12-21 18:38:53 字数 2700 浏览 0 评论 0原文

我有下面的 xml

    <entry>
        <id></id>
        <title></title>
        <dc:identifier></dc:identifier>
        <dc:identifier></dc:identifier>
        <dc:relation></dc:relation>
        <dc:publisher></dc:publisher>
        <dc:language xsi:type="dcterms:ISO639-2"></dc:language>
        <dcterms:issued></dcterms:issued>
        <updated></updated>
        <rights></rights>
        <author>
            <name></name>
            <uri></uri>
        </author>
        <link rel="alternate" href="" type="text/html"/>
        <link rel="http://opds-spec.org/image" href="" type="image/jpeg"/>
        <link rel="http://opds-spec.org/image/thumbnail" href="" type="image/jpeg"/>
        <link rel="http://opds-spec.org/acquisition/buy" href="" type="application/epub+zip">
            <opds:price currencycode="EUR"></opds:price>
        </link>
        <summary type="text"></summary>
</entry>
<entry>
        <id></id>
        <title></title>
        <dc:identifier></dc:identifier>
        <dc:identifier></dc:identifier>
        <dc:relation></dc:relation>
        <dc:publisher></dc:publisher>
        <dc:language xsi:type="dcterms:ISO639-2"></dc:language>
        <dcterms:issued></dcterms:issued>
        <updated></updated>
        <rights></rights>
        <author>
            <name></name>
            <uri></uri>
        </author>
        <link rel="alternate" href="" type="text/html"/>
        <link rel="http://opds-spec.org/image" href="" type="image/jpeg"/>
        <link rel="http://opds-spec.org/image/thumbnail" href="" type="image/jpeg"/>
        <link rel="http://opds-spec.org/acquisition/buy" href="" type="application/epub+zip">
            <opds:price currencycode="EUR"></opds:price>
        </link>
        <summary type="text"></summary>
</entry>
......

我可以在解析所有项目时很好地解析它(simpleXML)

现在我想一次获取一个项目。所以我将一个 var 传递到我的文件,就像

file.php?start=1
file.php?start=2
etc

我尝试访问当前项目

$xml->entry[$start] returns NULL

 $xml->entry->{$start} returns NULL

但两者都返回 NULL

我尝试直接访问它

$xml->entry[1]
$xml->entry->{1}

,它工作正常,

我错过了什么吗?

i have the xml below

    <entry>
        <id></id>
        <title></title>
        <dc:identifier></dc:identifier>
        <dc:identifier></dc:identifier>
        <dc:relation></dc:relation>
        <dc:publisher></dc:publisher>
        <dc:language xsi:type="dcterms:ISO639-2"></dc:language>
        <dcterms:issued></dcterms:issued>
        <updated></updated>
        <rights></rights>
        <author>
            <name></name>
            <uri></uri>
        </author>
        <link rel="alternate" href="" type="text/html"/>
        <link rel="http://opds-spec.org/image" href="" type="image/jpeg"/>
        <link rel="http://opds-spec.org/image/thumbnail" href="" type="image/jpeg"/>
        <link rel="http://opds-spec.org/acquisition/buy" href="" type="application/epub+zip">
            <opds:price currencycode="EUR"></opds:price>
        </link>
        <summary type="text"></summary>
</entry>
<entry>
        <id></id>
        <title></title>
        <dc:identifier></dc:identifier>
        <dc:identifier></dc:identifier>
        <dc:relation></dc:relation>
        <dc:publisher></dc:publisher>
        <dc:language xsi:type="dcterms:ISO639-2"></dc:language>
        <dcterms:issued></dcterms:issued>
        <updated></updated>
        <rights></rights>
        <author>
            <name></name>
            <uri></uri>
        </author>
        <link rel="alternate" href="" type="text/html"/>
        <link rel="http://opds-spec.org/image" href="" type="image/jpeg"/>
        <link rel="http://opds-spec.org/image/thumbnail" href="" type="image/jpeg"/>
        <link rel="http://opds-spec.org/acquisition/buy" href="" type="application/epub+zip">
            <opds:price currencycode="EUR"></opds:price>
        </link>
        <summary type="text"></summary>
</entry>
......

I can parse it fine when parsing all items (simpleXML)

Now i want to get one item at the time.So i passing a var to my file like

file.php?start=1
file.php?start=2
etc

and i tried to access the current item

$xml->entry[$start] returns NULL

OR

 $xml->entry->{$start} returns NULL

but both returns NULL

I tried to access it directly

$xml->entry[1]
$xml->entry->{1}

and its working fine

Am i missing somehthing?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

二手情话 2024-12-28 18:38:53

$_GET['start'] 可能不是正确的变量类型,请尝试将类型转换为整数。

$_GET['start'] is perhaps not proper variable type, try type casting to integer.

携余温的黄昏 2024-12-28 18:38:53
<?php
$xml = simplexml_load_file('simplexml.php');

$id = '1';
print_r($xml->entry[$id]);
?>

结果:

NULL

<?php
$xml = simplexml_load_file('simplexml.php');

$id = '1';
$id = (int)$id;

print_r($xml->entry[$id]);

?>

结果:

SimpleXMLElement 对象

[条目] => SimpleXMLElement 对象

[id] => 2
[标题] =>其他标题

<?php
$xml = simplexml_load_file('simplexml.php');

$id = '1';
print_r($xml->entry[$id]);
?>

Result:

NULL

<?php
$xml = simplexml_load_file('simplexml.php');

$id = '1';
$id = (int)$id;

print_r($xml->entry[$id]);

?>

Result:

SimpleXMLElement Object
(
[entry] => SimpleXMLElement Object
(
[id] => 2
[title] => The Other Title
)
)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文