3v4l.org

run code in 300+ PHP versions simultaneously
<?php class BaconClass { private $array; public function __construct() { $this->array = array(); } public function AddBacon($function) { array_push($this->array, $function); } /* ... */ public function GetBacon() { foreach($this->array as $function) { echo $function(); } } } $bacon = new BaconClass(); $bacon->AddBacon(function() { echo "Om nom nom"; }); /* And somewhere else I might have */ $bacon->AddBacon(function() { echo "I like bacon"; }); /* And then after all of this I have */ $bacon->GetBacon();
Output for git.master, git.master_jit, rfc.property-hooks
Om nom nomI like bacon

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.4 ms | 401 KiB | 8 Q