3v4l.org

run code in 300+ PHP versions simultaneously
<?php define("CLI", !isset($_SERVER['HTTP_USER_AGENT'])); $lt = (CLI) ? "\r\n" : "<br />"; /** * Abstract Surfer Class * * @package hangten */ abstract class Surfer { abstract public function rideWave($amplitude); public function applyWax($waxType){ echo("Ahh, all waxed up with '".$waxType."', ready to go!" . $lt); } public function paddleOut(){ echo("Paddling...." . $lt); } public function screamShark(){ echo("SHARK!!" . $lt); } } /** * RookieSurfer Class * * This surfer is green and can barely surf =) * @package hangten */ class RookieSurfer extends Surfer { public function rideWave($amplitude = 1){ echo("Trying.. Trying.. to ride a ".$amplitude."ft. wave, whew!" . $lt); } } /** * ProSurfer Class * * This surfer is crazy skilled!! * @package hangten */ class ProSurfer extends Surfer { public function rideWave($amplitude = 8){ echo("Riding a ".$amplitude."ft. wave backwards doing a backflip!" . $lt); } public function killSharkWithBoard(){ echo("totally just sliced that shark in two, he's over it!! booya!" . $lt); } } // Rookie Instantiation $rookie = new RookieSurfer; $rookie->applyWax("Candle Wax"); $rookie->paddleOut(); $rookie->rideWave(2); $rookie->screamShark(); // Pro Instantiation $pro = new ProSurfer; $pro->applyWax("Sex Wax"); $pro->paddleOut(); $pro->rideWave(50); $pro->killSharkWithBoard();
Output for git.master, git.master_jit, rfc.property-hooks
Warning: Undefined variable $lt in /in/NkfbA on line 14 Ahh, all waxed up with 'Candle Wax', ready to go! Warning: Undefined variable $lt in /in/NkfbA on line 18 Paddling.... Warning: Undefined variable $lt in /in/NkfbA on line 35 Trying.. Trying.. to ride a 2ft. wave, whew! Warning: Undefined variable $lt in /in/NkfbA on line 22 SHARK!! Warning: Undefined variable $lt in /in/NkfbA on line 14 Ahh, all waxed up with 'Sex Wax', ready to go! Warning: Undefined variable $lt in /in/NkfbA on line 18 Paddling.... Warning: Undefined variable $lt in /in/NkfbA on line 48 Riding a 50ft. wave backwards doing a backflip! Warning: Undefined variable $lt in /in/NkfbA on line 52 totally just sliced that shark in two, he's over it!! booya!

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.89 ms | 402 KiB | 8 Q