使用PHP,我想编写一个从XML中获取数字的函数,并将这些数字相乘。但是,我不知道如何使用SimpleXML中的十进制数字。
PHP
$xml = new SimpleXMLElement(
'<DOM>
<TAB id="ID1" width="30.1" height="0.5" ></TAB>
<TAB id="ID2" width="15.7" height="1.8" ></TAB>
</DOM>');
foreach ($xml->children() as $second_level) {
echo $second_level->attributes()->id."<br>";
echo ($second_level->attributes()->width * 10)."<br>";
echo ($second_level->attributes()->height * 10)."<br>";
}
当前(错误)输出:
ID1
300
0
ID2
150
10
正确的输出应该是:
ID1
301
5
ID2
157
18
答案 0 :(得分:4)
其他答案都在正确的方面,但只是为了澄清什么时候需要投出,因此括号需要去哪里。与PHP中的其他类型不同,SimpleXML对象永远不会自动转换为float
,因此像*
这样的数学运算符会将它们转换为int
。 (我filed this is as a bug,但由于PHP内部没有实现它的方法,它被关闭了。)
因此,在对其应用任何数学运算之前,您需要将 SimpleXML值投射到float
(AKA double
)。为了在没有中间分配的情况下以正确的顺序强制执行此操作,您只需要一组额外的括号:((float)$simplexml_value) * $some_number
。
但是,正如Operator Precedence table in the PHP manual所示,(float)
等类型转换的优先级已高于*
,优先级高于.
,因此以下代码运行根据需要,没有任何额外的括号(live demo in multiple PHP versions):
foreach ($xml->children() as $second_level) {
echo $second_level->attributes()->id . "<br>";
echo (float)$second_level->attributes()->width * 10 . "<br>";
echo (float)$second_level->attributes()->height * 10 . "<br>";
}
在转换后立即分配给中间变量也会有效,因为乘法更愿意将integer
10转换为float
而不是将float
变量转换为{{1} (live demo):
integer
答案 1 :(得分:2)
这是因为10
是integer值,因此该等式的结果也是整数值。您必须将所有值转换为floats。
foreach ($xml->children() as $second_level) {
echo $second_level->attributes()->id."<br>";
echo (float) ((float) $second_level->attributes()->width * (float) 10)."<br>";
echo (float) ((float) $second_level->attributes()->height * (float) 10)."<br>";
}
编辑:Ubuntu 13.04 XAMPP与PHP 5.4.16,这工作:
<?php
$xml = new SimpleXMLElement(
'<DOM>
<TAB id="ID1" width="30.1" height="0.5" ></TAB>
<TAB id="ID2" width="15.7" height="1.8" ></TAB>
</DOM>');
foreach ($xml->children() as $second_level) {
echo $second_level->attributes()->id."<br>";
echo (float) ((float) $second_level->attributes()->width * 10)."<br>";
echo (float) ((float) $second_level->attributes()->height * 10)."<br>";
}
答案 2 :(得分:2)
通过此代码将值转换为double:
(double) ($second_level->attributes()->width) * 10