doumei1955 2018-05-20 03:22
浏览 99
已采纳

PHP:从XML字符串中获取数据

I have a simple problem getting data from an eBay API string. I want to format numbers to 2 digits 8.0 > 8.00

This works fine

echo $price;  // output: 8.0

But...

echo number_format($price, 2);  // output:   (nothing)

A var_dump tells me why...

var_dump($price);  
// output: object(SimpleXMLElement)#19 (2) { ["@attributes"]=> array(1) { ["currencyId"]=> string(3) "USD" } [0]=> string(3) "8.0" } 

How do I get the 8.0 into a 8.00 (I know I can use REGEX but it feels like not the proper way)

And while we are here, how I can get the 'USD' ?

PS: the API call used is findCompletedItems - and strangely to me, the XML response has no visible USD at all.

  • 写回答

2条回答 默认 最新

  • dongqiangse6623 2018-05-20 11:06
    关注

    The var_dump gives you an object of type SimpleXMLElement which has a __toString method which returns the text content that is directly in the element so echo $price; will result in 8.0

    The USD is part of the attributes which returns an object of type SimpleXMLElement.

    You can get the price and the currency casting it to a (string)

    $priceAsString = (string)$price;
    $currencyIdAsString = (string)$price->attributes()->currencyId;
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 matlab答疑 关于海上风电的爬坡事件检测
  • ¥88 python部署量化回测异常问题
  • ¥30 酬劳2w元求合作写文章
  • ¥15 在现有系统基础上增加功能
  • ¥15 远程桌面文档内容复制粘贴,格式会变化
  • ¥15 关于#java#的问题:找一份能快速看完mooc视频的代码
  • ¥15 这种微信登录授权 谁可以做啊
  • ¥15 请问我该如何添加自己的数据去运行蚁群算法代码
  • ¥20 用HslCommunication 连接欧姆龙 plc有时会连接失败。报异常为“未知错误”
  • ¥15 网络设备配置与管理这个该怎么弄