3v4l.org

run code in 300+ PHP versions simultaneously
<?php //simulatiing a similar situation class PDO2{} class DB{ public static function connection(){ //I know it's not something like this, but that isn't what we're concerned here return new class { public function getPdo(){ return new PDO2(); } }; } }; class Test { protected $pdo; public function __construct(PDO2 $pdo) { $this->pdo = $pdo; } } var_dump(new Test($pdo = DB::connection()->getPdo()));
Output for git.master, git.master_jit, rfc.property-hooks
object(Test)#1 (1) { ["pdo":protected]=> object(PDO2)#3 (0) { } }

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