3v4l.org

run code in 300+ PHP versions simultaneously
<?php class Foo { protected $foo; protected $bar; protected $baz; } class FooSelfHydratingProxy extends Foo { /** zero-argument constructor since this is just a helper class for hydration */ public function __construct() { } /** * the `Foo` typehint is not part of the interface - here only for the sake of readability/clearness */ public function hydrate($data, Foo $object) { $object->foo = $data['foo']; $object->bar = $data['bar']; $object->baz = $data['baz']; } /** * the `Foo` typehint is not part of the interface - here only for the sake of readability/clearness */ public function extract(Foo $object) { return array('foo' => $object->foo, 'bar' => $object->bar, 'baz' => $object->baz); } } $iterations = 100000; $data = array('foo' => 1, 'bar' => 2, 'baz' => 3); $hydrator = new FooSelfHydratingProxy(); $hydrated = new Foo(); for ($i = 0; $i < $iterations; $i++) { $hydrator->hydrate($hydrated, $data); }
Output for git.master, git.master_jit, rfc.property-hooks
Fatal error: Uncaught TypeError: FooSelfHydratingProxy::hydrate(): Argument #2 ($object) must be of type Foo, array given, called in /in/9ioNO on line 45 and defined in /in/9ioNO:20 Stack trace: #0 /in/9ioNO(45): FooSelfHydratingProxy->hydrate(Object(Foo), Array) #1 {main} thrown in /in/9ioNO on line 20
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:
51.22 ms | 401 KiB | 8 Q