3v4l.org

run code in 300+ PHP versions simultaneously
<?php class Math { const pi = 3.14; } class CircleMath extends Math { public static function calculateArea($radius) { return parent::pi * pow($radius, 2); } } class Circle { private $radius = 1.0; private $color = 'white'; private $coordinates = array('x' => 0, 'y' => 0); public function __construct() { $args = func_get_args(); foreach ($args as $arg) { if (is_numeric($arg)) { $this->radius = doubleval($arg); } else if (is_string($arg)) { $this->color = $arg; } else if (is_array()) { $this->coordinates = $arg; } } } public function calculateArea() { return CircleMath::calculateArea($this->radius); } public function get_radius() { return $this->radius; } public function get_color() { return $this->color; } public function get_coordinates() { return $this->coordinates; } } $className = 'Circle'; $circle = new $className(array('x' => 5, 'y' => 6)); print sprintf('The area of %s circle with radius %s and center positioned in (%s, %s) is: %s', $circle->get_color(), $circle->get_radius(), $circle->get_coordinates()['x'], $circle->get_coordinates()['y'], $circle->calculateArea()); ?>
Output for git.master, git.master_jit, rfc.property-hooks
Fatal error: Uncaught ArgumentCountError: is_array() expects exactly 1 argument, 0 given in /in/kMJBe:26 Stack trace: #0 /in/kMJBe(26): is_array() #1 /in/kMJBe(51): Circle->__construct(Array) #2 {main} thrown in /in/kMJBe on line 26
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:
40.81 ms | 401 KiB | 8 Q