您将在下面找到我的 xml 文档:
<?xml version="1.0" encoding="ISO-8859-1"?>
<app>
<version>0925</version>
<humanVersion>0.9.25</humanVersion>
</app>
这是我的php:
$completeurl = "ota/shingle/shingle.xml";
$xml = simplexml_load_file($completeurl);
$updateVer = $xml->version;
$updateVerHuman = $xml->humanVersion;
我正在获取 php 变量并将它们放入 json 字符串中,这是输出:
{"updateVer":{"0":"0925"},"updateVerHuman":{"0":"0.9.25"}}
为什么 updateVer 和 updateVerHuman 数据包含在 {} 中并且包含“0”:?? 我只想要那个值的数据。我如何实现这一目标?
我已经尝试过了,但它产生了相同的结果:
$updateVer = $xml->version[0];
$updateVerHuman = $xml->humanVersion[0];