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, ));
Output for git.master, git.master_jit, rfc.property-hooks
Numeric strings will be converted into an integer array(2) { [1]=> string(1) "1" ["s1"]=> string(2) "s1" } Bolean TRUE will be converted into the integer 1: Bolean FALSE will be converted into an ampty string: array(2) { [1]=> bool(true) [0]=> bool(false) }

This tab shows result from various feature-branches currently under review by the php developers. Contact me to have additional branches featured.

Active branches

Archived branches

Once feature-branches are merged or declined, they are no longer available. Their functionality (when merged) can be viewed from the main output page


preferences:
38.72 ms | 402 KiB | 8 Q