3v4l.org

run code in 300+ PHP versions simultaneously
<?php class Foo { public $bar; } $foo = new Foo; $arr = array("", " ", FALSE, TRUE, array(), NULL, "0", 0, 0.0, new stdClass, $foo, $foo->bar, "\0"); define('PAD', 20); $headings = array('type', 'if', 'isset', 'empty', 'is_null'); foreach($headings as $heading){ echo str_pad($heading, PAD), " | "; } echo "\n"; $x = str_pad("TRUE", PAD) . " | "; $y = str_pad("", PAD) . " | "; foreach($arr as $val){ echo str_pad(print($val), PAD), " | "; echo $val ? $x : $y; echo isset($val) ? $x : $y; echo empty($val) ? $x : $y; echo is_null($val) ? $x : $y; echo "\n"; }
Output for git.master, git.master_jit, rfc.property-hooks
type | if | isset | empty | is_null | 1 | | TRUE | TRUE | | 1 | TRUE | TRUE | | | 1 | | TRUE | TRUE | | 11 | TRUE | TRUE | | | Warning: Array to string conversion in /in/Z0S2c on line 15 Array1 | | TRUE | TRUE | | 1 | | | TRUE | TRUE | 01 | | TRUE | TRUE | | 01 | | TRUE | TRUE | | 01 | | TRUE | TRUE | | Fatal error: Uncaught Error: Object of class stdClass could not be converted to string in /in/Z0S2c:15 Stack trace: #0 {main} thrown in /in/Z0S2c on line 15
Process exited with code 255.

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:
86.8 ms | 402 KiB | 8 Q