3v4l.org

run code in 300+ PHP versions simultaneously
<?php $myvar = 1; $my_other_var = 4; $third_var = 10; $dc_tx = 22; // Good practice to initialise variables. $result = FALSE; // If required, this comment will explain what we're about to do. if (isset($myvar)) { // This comment would explain why we are adding 6 to myvar. $result = $myvar + 6; } elseif (!empty($my_other_var)) { // This comment explains why we got here and why we're about // to add these two variables together. $result = $myvar + $third_var; } else { // Explain why we're using this var as the result. $result = $dc_tx; }
Output for git.master, git.master_jit, rfc.property-hooks

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