3v4l.org

run code in 300+ PHP versions simultaneously
<?php echo "Numeric strings will be converted into an integer\n"; var_dump(array( 1 => 1, '1' => '1', 's1' => 's1', )); echo "Bolean TRUE will be converted into the integer 1:\n"; echo "Bolean FALSE will be converted into the integer 0:\n"; var_dump(array( 0 => 0, 1 => 1, true => true, false => false, ));

preferences:
39.36 ms | 402 KiB | 5 Q