3v4l.org

run code in 300+ PHP versions simultaneously
<?php declare(strict_types=1); error_reporting(E_ALL); trait NumberSettingConstructor { public function __construct() { $this->number = 1234; } public function __set($name, $value) { printf("UNEXPECTED SETTING OF %s\n", $name); } } class ClassWithTypedProperty { public int $number; use NumberSettingConstructor; } class ClassWithInitializedTypedProperty { public int $number = 0; use NumberSettingConstructor; } class ClassWithTraditionalProperty { public $number; use NumberSettingConstructor; } printf("\n--- Typed Property ---\n"); print_r(new ClassWithTypedProperty()); printf("\n--- Typed Property (with Initialization) ---\n"); print_r(new ClassWithInitializedTypedProperty()); printf("\n--- Traditional Untyped Property ---\n"); print_r(new ClassWithTraditionalProperty());
Output for git.master, git.master_jit, rfc.property-hooks
--- Typed Property --- ClassWithTypedProperty Object ( [number] => 1234 ) --- Typed Property (with Initialization) --- ClassWithInitializedTypedProperty Object ( [number] => 1234 ) --- Traditional Untyped Property --- ClassWithTraditionalProperty Object ( [number] => 1234 )

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:
67.55 ms | 406 KiB | 5 Q