需要访问 SimpleXML 对象中的值

发布于 2024-11-19 16:15:30 字数 442 浏览 0 评论 0原文

这应该很容易,但我只是不知道该怎么做。我只需要访问元素 document-id 的值。

print_r($http_result_simplexml);

给出...

SimpleXMLElement Object ( [document-id] => 1234 ) 

我需要获取此文档 ID 号,但我不知道如何操作。我尝试了 $http_result_simplexml['document-id'],但它不起作用。我的理解是“document-id”是元素,“1234”是元素的值。我遇到的另一种方法是 $http_result_simplexml->element_name ,但显然,“document-id”中的减号在那里不起作用..我确信这是非常简单的事情..

(请纠正我,如果这不叫“元素”)

This should be really easy, but I'm just not seeing how to do it. I just need to access the value of the element document-id.

print_r($http_result_simplexml);

gives...

SimpleXMLElement Object ( [document-id] => 1234 ) 

I need to get this document ID number, but I'm not getting how to do it. I tried $http_result_simplexml['document-id'], but it doesn't work. What I'm understading is that 'document-id' is the element, and '1234' is the value of the element. Another method I've come across is $http_result_simplexml->element_name, but obvisouly, the minus sign in 'document-id' won't work there.. I'm sure this is something absurdly simple..

(please correct me if that's not called the "element")

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

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

发布评论

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

评论(2

沐歌 2024-11-26 16:15:31

访问您要查找的元素:
$document_id = $http_result_simplexml->{'document-id'}

$document_id 也将是一个 SimpleXMLObject!所以你必须使用以下任一方法来转换值:
$document_id = (string)$document_id;$document_id = (int)$document_id;
取决于您想要字符串还是整数。

print_r($document_id); //现在应该给出你想要的结果

Access the element you are looking for:
$document_id = $http_result_simplexml->{'document-id'}

$document_id will also be a SimpleXMLObject! so you have to cast the value, using either:
$document_id = (string)$document_id; or $document_id = (int)$document_id;
depending on whether you want a string or integer.

print_r($document_id); //should give the result you want now

我不吻晚风 2024-11-26 16:15:31

您也可以尝试 __toString()http:// /php.net/manual/en/language.oop5.magic.php

$element = $http_result_simplexml->{'document-id'}->__toString();

也应该可以工作。

You may also try the __toString(): http://php.net/manual/en/language.oop5.magic.php

$element = $http_result_simplexml->{'document-id'}->__toString();

should work also.

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