3v4l.org

run code in 300+ PHP versions simultaneously
<?php $tests = [ '[] == false' => [] == false, '[0] == true' => [0] == true, '"" == false' => '' == false, '"ABC" == false' => 'ABC' == false, '"0" == false' => '0' == false, '"1" == true' => '1' == true, '"123" == false' => '123' == true, 'null == false' => null == false, '0 == false' => 0 == false, '0.49 == false' => 0.49 == false ]; $i = 0; foreach($test as $name => $val) { echo ++$i . ') ' . $name . ' => ' . ($val ? 'T' : 'F') . "\n"; }
Output for git.master, git.master_jit, rfc.property-hooks
Warning: Undefined variable $test in /in/ADCMq on line 17 Warning: foreach() argument must be of type array|object, null given in /in/ADCMq on line 17

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:
35.43 ms | 401 KiB | 8 Q