3v4l.org

run code in 300+ PHP versions simultaneously
<?php if (PHP_VERSION_ID < 50400) { die(); } $cases = array( '', ':', '//', '?', '#', 'http', 'http:', 'http://', 'http://hostname', '//hostname', 'http://user:pass@hostname:1234/path/file.ext?foo=bar#id', ); foreach ($cases as $case) { print_r(parse_url($case)); }
Output for git.master, git.master_jit, rfc.property-hooks
Array ( [path] => ) Array ( [query] => ) Array ( [fragment] => ) Array ( [path] => http ) Array ( [scheme] => http ) Array ( [scheme] => http [host] => hostname ) Array ( [host] => hostname ) Array ( [scheme] => http [host] => hostname [port] => 1234 [user] => user [pass] => pass [path] => /path/file.ext [query] => foo=bar [fragment] => id )

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:
56.02 ms | 402 KiB | 8 Q