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条)

报告相同问题?

悬赏问题

  • ¥50 power BI 从Mysql服务器导入数据,但连接进去后显示表无数据
  • ¥15 (关键词-阻抗匹配,HFSS,RFID标签)
  • ¥50 sft下载大文阻塞卡死
  • ¥15 机器人轨迹规划相关问题
  • ¥15 word样式右侧翻页键消失
  • ¥15 springboot+vue 集成keycloak sso到阿里云
  • ¥15 win7系统进入桌面过一秒后突然黑屏
  • ¥30 backtrader对于期货交易的现金和资产计算的问题
  • ¥15 求C# .net4.8小报表工具
  • ¥15 安装虚拟机时出现问题