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 an ampty string:\n"; var_dump(array( true => true, false => false, ));

preferences:
79.55 ms | 402 KiB | 5 Q