对“默认”的 XML 访问属性

发布于 12-03 23:55 字数 536 浏览 1 评论 0原文

只是好奇如何使用 php 和 simplexml 从该 xml 文档的“startTime”获取信息

<event xmlns="http://schemas.google.com/contact/2008" xmlns:default="http://schemas.google.com/g/2005" rel="anniversary">
    <default:when xmlns="http://schemas.google.com/g/2005" startTime="2009-05-09"/>
  </event>

我最初的想法是。

$xml->event->default['startTime']

或者

$xml->event->when['startTime']

但是两者都返回 NULL...当我可以看到数据不为 NULL 时。 关于如何获取这些信息有什么想法吗?

Just curious how to obtain the information from "startTime" of this xml document using php and simplexml

<event xmlns="http://schemas.google.com/contact/2008" xmlns:default="http://schemas.google.com/g/2005" rel="anniversary">
    <default:when xmlns="http://schemas.google.com/g/2005" startTime="2009-05-09"/>
  </event>

My initial thought was.

$xml->event->default['startTime']

OR

$xml->event->when['startTime']

But both return NULL... when I can see the data isn't NULL.
Any thoughts on how to obtain this information?

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

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

发布评论

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

评论(1

小苏打饼2024-12-10 23:55:26

经过更多研究后,我发现了这一点,并且运行良好。

//    Get All Events
foreach ($xml->event as $e) {
    $defaults = $e->children('http://schemas.google.com/g/2005'); 

    if($e['rel'] == "anniversary") {
        $obj->anniversary = (string) $defaults->when->attributes()->startTime;
    }
}

Well after much more research I found this as a result and is working perfectly.

//    Get All Events
foreach ($xml->event as $e) {
    $defaults = $e->children('http://schemas.google.com/g/2005'); 

    if($e['rel'] == "anniversary") {
        $obj->anniversary = (string) $defaults->when->attributes()->startTime;
    }
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文