使用 simplexml 访问 xml/atom 文档中的命名空间元素/属性
我可能有一个简单的问题, 我需要知道如何访问嵌套命名空间属性/元素,如下所示,
<gf:marketValue>
<gd:money amount='150990.0' currencyCode='USD'/>
</gf:marketValue>
这来自 google-api
另外,我现在不确定应该使用哪一个 网址.../作品集 或者 投资组合/1/头寸 获取股票报价
所以,我对此可能是错的。 (上面的xml来自投资组合)
$response= simplexml_load_string($response);
foreach($response->entry as $entry)
{
$ns_gf = $entry->children('http://schemas.google.com/finance/2007');
感谢adv,Richard
I may have a simple question,
I need to know how to get to nested namespace attributes/elements like below
<gf:marketValue>
<gd:money amount='150990.0' currencyCode='USD'/>
</gf:marketValue>
this is from the google-api
Also, I am now not sure wich one I should use
the url .../portfolio
or
portfolio/1/positions
to get the stockquotes
So, I may be wrong about this. (the xml above are from portfolio)
$response= simplexml_load_string($response);
foreach($response->entry as $entry)
{
$ns_gf = $entry->children('http://schemas.google.com/finance/2007');
thanks in adv, Richard
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
或者,您可以这样做,这将回显所有数据和上面的符号:
Or, you could go with this, which would echo out all data and the symbol above: