3v4l.org

run code in 300+ PHP versions simultaneously
<?php $object = (object) array("123.5"=>"456"); var_dump($object); foreach ($object as $key => $value) { echo $key . ' => ' . $value,"\n"; } $object = (object) array(123.5=>"456"); var_dump($object); foreach ($object as $key => $value) { echo $key . ' => ' . $value,"\n"; } $object = new stdClass; $object->a = array(123.5=>"456"); var_dump($object); echo $object->a[123.2],"\n";
Output for 8.1.0 - 8.1.28, 8.2.0 - 8.2.18, 8.3.0 - 8.3.6
object(stdClass)#1 (1) { ["123.5"]=> string(3) "456" } 123.5 => 456 Deprecated: Implicit conversion from float 123.5 to int loses precision in /in/Nq1n3 on line 8 object(stdClass)#2 (1) { ["123"]=> string(3) "456" } 123 => 456 Deprecated: Implicit conversion from float 123.5 to int loses precision in /in/Nq1n3 on line 15 object(stdClass)#1 (1) { ["a"]=> array(1) { [123]=> string(3) "456" } } Deprecated: Implicit conversion from float 123.2 to int loses precision in /in/Nq1n3 on line 17 456
Output for 7.2.0 - 7.2.33, 7.3.0 - 7.3.33, 7.4.0 - 7.4.33, 8.0.0 - 8.0.30
object(stdClass)#1 (1) { ["123.5"]=> string(3) "456" } 123.5 => 456 object(stdClass)#2 (1) { ["123"]=> string(3) "456" } 123 => 456 object(stdClass)#1 (1) { ["a"]=> array(1) { [123]=> string(3) "456" } } 456
Output for 5.2.1 - 5.2.17, 5.3.0 - 5.3.29, 5.4.0 - 5.4.45, 5.5.24 - 5.5.35, 5.6.8 - 5.6.28, 7.0.0 - 7.0.20, 7.1.0 - 7.1.33
object(stdClass)#1 (1) { ["123.5"]=> string(3) "456" } 123.5 => 456 object(stdClass)#2 (1) { [123]=> string(3) "456" } 123 => 456 object(stdClass)#1 (1) { ["a"]=> array(1) { [123]=> string(3) "456" } } 456
Output for 5.2.0
object(stdClass)#1 (1) { ["123.5"]=> string(3) "456" } 123.5 => 456 object(stdClass)#2 (1) { [123]=> string(3) "456" }
Process exited with code 139.
Output for 5.0.0 - 5.0.5, 5.1.0 - 5.1.6
object(stdClass)#1 (1) { ["123.5"]=> string(3) "456" } 123.5 => 456 object(stdClass)#2 (1) { [123]=> string(3) "456" } object(stdClass)#1 (1) { ["a"]=> array(1) { [123]=> string(3) "456" } } 456
Output for 4.3.0 - 4.3.11, 4.4.0 - 4.4.9
object(stdClass)(1) { ["123.5"]=> string(3) "456" } 123.5 => 456 object(stdClass)(1) { [123]=> string(3) "456" } 123 => 456 object(stdClass)(1) { ["a"]=> array(1) { [123]=> string(3) "456" } } 456

preferences:
243.4 ms | 402 KiB | 342 Q