Find this useful? Enter your email to receive occasional updates for securing PHP code.
Signing you up...
Thank you for signing up!
PHP Decode
--TEST-- Bug #53033: Mathematical operations convert objects to integers --EXTENSIONS-- si..
Decoded Output download
--TEST--
Bug #53033: Mathematical operations convert objects to integers
--EXTENSIONS--
simplexml
--FILE--
<?php
$x = simplexml_load_string('<x>2.5</x>');
var_dump($x*1);
// type of other operand is irrelevant
var_dump($x*1.0);
// strings behave differently
$y = '2.5';
var_dump($y*1);
var_dump((string)$x*1);
?>
--EXPECT--
float(2.5)
float(2.5)
float(2.5)
float(2.5)
Did this file decode correctly?
Original Code
--TEST--
Bug #53033: Mathematical operations convert objects to integers
--EXTENSIONS--
simplexml
--FILE--
<?php
$x = simplexml_load_string('<x>2.5</x>');
var_dump($x*1);
// type of other operand is irrelevant
var_dump($x*1.0);
// strings behave differently
$y = '2.5';
var_dump($y*1);
var_dump((string)$x*1);
?>
--EXPECT--
float(2.5)
float(2.5)
float(2.5)
float(2.5)
Function Calls
simplexml_load_string | 1 |
Stats
MD5 | 4739a421c35657c343f4218c70d7033d |
Eval Count | 0 |
Decode Time | 96 ms |