3v4l.org

run code in 300+ PHP versions simultaneously
<?php class Father { /** * Father Controller */ public function __construct() { // CSRF basic Protection $this->beforeFilter('csrf', ['on' => 'post']); $this->beforeFilter('csrf', ['on' => 'put']); $this->beforeFilter('csrf', ['on' => 'patch']); $this->beforeFilter('csrf', ['on' => 'delete']); // Set the bag $this->messageBag = new MessageBag; } } class Child extends Father { /** * Child Controller that extend Father */ public function __construct($a /** Some parameters **/) { parent::__construct(); } } $a = new Child(1);
Output for git.master, git.master_jit, rfc.property-hooks
Fatal error: Uncaught Error: Call to undefined method Child::beforeFilter() in /in/9bvDe:10 Stack trace: #0 /in/9bvDe(27): Father->__construct() #1 /in/9bvDe(31): Child->__construct(1) #2 {main} thrown in /in/9bvDe on line 10
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:
42.58 ms | 401 KiB | 8 Q