3v4l.org

run code in 300+ PHP versions simultaneously
<?php class Repository { public function checkById() { return true; } } class A extends B { public function __construct(array $config) { // other stuff parent::__construct($config); // other stuff } public function check(int $id) { if ( $this->checkSomething($id) ) { return 'bla'; } } public function setLang(string $lang) { $this->repository->setLang($lang); } } class B { protected $repository; protected function __construct(array $config) { $this->repository = new Repository ($config); } protected function checkSomething(int $id) { if ( $this->repository->checkById($id) ) { return TRUE; } } public function get() { return 'whatever'; } } $config = ['some', 'config']; $a = new A($config); var_dump($a->get()); var_dump($a->check(1));
Output for git.master, git.master_jit, rfc.property-hooks
string(8) "whatever" string(3) "bla"

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