从 XML 对象中提取数据

发布于 2024-10-15 22:53:22 字数 236 浏览 1 评论 0原文

我如何从该 xml 对象中提取数据,该对象是某个数组的值:

Array ( [Title] => SimpleXMLElement Object ( 
[0] => The Key of Life; A Metaphysical Investigation ) 
[ASIN] => SimpleXMLElement Object ( [0] => 0982385099 ) ...

How do i extract the data from that xml object which is a value of a certain array:

Array ( [Title] => SimpleXMLElement Object ( 
[0] => The Key of Life; A Metaphysical Investigation ) 
[ASIN] => SimpleXMLElement Object ( [0] => 0982385099 ) ...

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

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

发布评论

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

评论(3

凉风有信 2024-10-22 22:53:22

对对象进行字符串类型转换。

$变量=(字符串)$FieldValue[0];

这可行,因为 SimpleXml 的所有子项都是对象类型而不是字符串。

Do string typecasting of the object.

$variable = (string) $FieldValue[0];

That would work, as SimpleXml has all the children in object type and not string.

云雾 2024-10-22 22:53:22

说 $X 是对象,所以要打印

生命的钥匙;形而上学
调查

echo $X->Title[0]

say $X is the object, so to print

The Key of Life; A Metaphysical
Investigation

you do:

echo $X->Title[0]
长亭外,古道边 2024-10-22 22:53:22

重要的是要明白,您使用的不是数组,而是使用 SimpleXMLElement 对象,这是不一样的。

  1. 您可以执行$xml->tag->subtag,而不是执行$array['key']['subkey']

  2. SimpleXML 节点不是字符串或数组,尽管它们的行为类似于字符串和数组。确保始终将值类型转换为显式字符串。

  3. 如果您要访问第一个节点,则无需使用[0]。这是假设的。

  4. 您可以使用 PHP 5.2 或更高版本将 SimpleXMLElement 对象转换为真正的关联数组:

    $array = json_decode(json_encode($xml), true);

It's important to understand that you're not working with an array — you're working with a SimpleXMLElement object, which is not the same.

  1. Instead of doing $array['key']['subkey'], you would do $xml->tag->subtag.

  2. SimpleXML nodes are not strings or arrays, although they behave string-like and array-like. Make sure you always typecast the value to an explicit string.

  3. If you're accessing the first node, you don't need to use [0]. It's assumed.

  4. You can convert SimpleXMLElement objects into true associative arrays in PHP 5.2 or newer with:

    $array = json_decode(json_encode($xml), true);

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