3v4l.org

run code in 300+ PHP versions simultaneously
<?php $expr = '! ^ (?: (?P<scheme> [a-z][a-z0-9.]* ) : )? (?: // (?<authority> (?: (?P<user> [^:@]+ ) (?: : (?P<pass> [^@]+ ) )? @ )? (?P<host> [^:/]+ ) (?: : (?P<port> [0-9]+ ) )? ) )? (?P<path> /[^?#]+ )? (?: \? (?P<query> [^#]+ ) )? (?: # (?P<fragment> .+ ) )? $ !ix'; $urls = [ 'http://host.com/path', 'http://user@host.com/path', 'http://user:pass@host.com/path', 'http://user:pass@host.com:8080/path', '//user:pass@host.com:8080/path', 'http://user:pass@host.com:8080/path?query#fragment', ]; foreach ($urls as $str) { echo "$str\n"; preg_match($expr, $str, $matches); foreach ($matches as $key => $match) { if (!is_int($key) && $match !== '') { echo " $key: $match\n"; } } echo "\n"; }
Output for git.master, git.master_jit, rfc.property-hooks
http://host.com/path scheme: http authority: host.com host: host.com path: /path http://user@host.com/path scheme: http authority: user@host.com user: user host: host.com path: /path http://user:pass@host.com/path scheme: http authority: user:pass@host.com user: user pass: pass host: host.com path: /path http://user:pass@host.com:8080/path scheme: http authority: user:pass@host.com:8080 user: user pass: pass host: host.com port: 8080 path: /path //user:pass@host.com:8080/path authority: user:pass@host.com:8080 user: user pass: pass host: host.com port: 8080 path: /path http://user:pass@host.com:8080/path?query#fragment scheme: http authority: user:pass@host.com:8080 user: user pass: pass host: host.com port: 8080 path: /path query: query fragment: #fragment

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