如何从 SipleXMLElement 中提取数据?

发布于 2025-01-05 22:29:07 字数 1432 浏览 0 评论 0原文

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

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

发布评论

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

评论(2

哆啦不做梦 2025-01-12 22:29:07

SimpleXMLElement 的行为就像一个对象,这就是为什么人们会像您一样感到困惑,但它实际上是一种有点不同的语言构造。元素及其数据必须类型转换为您想要使用的数据类型,因为默认情况下从 SimpleXMLElement 函数返回的所有内容都是 SimpleXMLElement,如果不是由函数类型转换,则必须直接类型转换。

如果您致电:

echo $foo; //typecast to a string automatically
$myVar = $foo; //SimpleXMLElement
$myVar = (string)$foo; //typecast to a string

The SimpleXMLElement behaves like an object which is why people get confused like you did, but it's actually a language construct which is a little different. The elements and their data must be typecast to the data type you want to work with because by default everything returned from a SimpleXMLElement function is a SimpleXMLElement which if not typecast by a function, must be directly typecast.

If you call:

echo $foo; //typecast to a string automatically
$myVar = $foo; //SimpleXMLElement
$myVar = (string)$foo; //typecast to a string
浸婚纱 2025-01-12 22:29:07

这有效:

(string) $foo 

This works:

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