3v4l.org

run code in 300+ PHP versions simultaneously
<?php class Bar { public function Baz($uri) { $uri = parse_url($uri); array_walk( $uri, function($value, $name) { $this->$name = $value; } ); } } $bar = new Bar(); $bar->Baz('http://foo.bar/test?q=v'); var_dump($bar);

preferences:
37.27 ms | 402 KiB | 5 Q