3v4l.org

run code in 300+ PHP versions simultaneously
<?php class A { function editbutton() { return 'editbutton'; } function sendbutton() { return 'sendbutton'; } function sellbutton() { return 'sellbutton'; } function cancelbutton() { return 'cancelbutton'; } function set_buttons() { $s = 1; $buttons = "<tr><td colspan=2><table><tr>"; if ($s == 0) { $buttons .= $this->editbutton().$this->sendbutton().$this->sellbutton(); } if ($s == 1) { $buttons .= $this->cancelbutton(); } $buttons .= "</tr></table></td></tr>"; echo $buttons; } } $a = new A(); $a->set_buttons();
Output for git.master, git.master_jit, rfc.property-hooks
<tr><td colspan=2><table><tr>cancelbutton</tr></table></td></tr>

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