3v4l.org

run code in 300+ PHP versions simultaneously
<?php $url = 'http://username:password@hostname:9090/path?arg=value#anchor'; print_r(parse_url($url)); print_r(parse_url($url, PHP_URL_PATH)); print_r(parse_url($url, PHP_URL_SCHEME)); print_r(parse_url($url, PHP_URL_HOST)); print_r(parse_url($url, PHP_URL_PORT)); print_r(parse_url($url, PHP_URL_USER)); print_r(parse_url($url, PHP_URL_PASS)); print_r(parse_url($url, PHP_URL_QUERY)); print_r(parse_url($url, PHP_URL_FRAGMENT));
Output for 5.1.2 - 5.1.6, 5.2.0 - 5.2.17, 5.3.0 - 5.3.29, 5.4.0 - 5.4.45, 5.5.24 - 5.5.35, 5.6.7 - 5.6.28, 7.0.0 - 7.0.20, 7.1.0 - 7.1.33, 7.2.0 - 7.2.33, 7.3.0 - 7.3.33, 7.4.0 - 7.4.33, 8.0.0 - 8.0.30, 8.1.0 - 8.1.27, 8.2.0 - 8.2.17, 8.3.0 - 8.3.4
Array ( [scheme] => http [host] => hostname [port] => 9090 [user] => username [pass] => password [path] => /path [query] => arg=value [fragment] => anchor ) /pathhttphostname9090usernamepasswordarg=valueanchor
Output for 4.3.0 - 4.3.11, 4.4.0 - 4.4.9, 5.0.0 - 5.0.5, 5.1.0 - 5.1.1
Array ( [scheme] => http [host] => hostname [port] => 9090 [user] => username [pass] => password [path] => /path [query] => arg=value [fragment] => anchor ) Notice: Use of undefined constant PHP_URL_PATH - assumed 'PHP_URL_PATH' in /in/7JAFi on line 5 Warning: parse_url() expects exactly 1 parameter, 2 given in /in/7JAFi on line 5 Notice: Use of undefined constant PHP_URL_SCHEME - assumed 'PHP_URL_SCHEME' in /in/7JAFi on line 6 Warning: parse_url() expects exactly 1 parameter, 2 given in /in/7JAFi on line 6 Notice: Use of undefined constant PHP_URL_HOST - assumed 'PHP_URL_HOST' in /in/7JAFi on line 7 Warning: parse_url() expects exactly 1 parameter, 2 given in /in/7JAFi on line 7 Notice: Use of undefined constant PHP_URL_PORT - assumed 'PHP_URL_PORT' in /in/7JAFi on line 8 Warning: parse_url() expects exactly 1 parameter, 2 given in /in/7JAFi on line 8 Notice: Use of undefined constant PHP_URL_USER - assumed 'PHP_URL_USER' in /in/7JAFi on line 9 Warning: parse_url() expects exactly 1 parameter, 2 given in /in/7JAFi on line 9 Notice: Use of undefined constant PHP_URL_PASS - assumed 'PHP_URL_PASS' in /in/7JAFi on line 10 Warning: parse_url() expects exactly 1 parameter, 2 given in /in/7JAFi on line 10 Notice: Use of undefined constant PHP_URL_QUERY - assumed 'PHP_URL_QUERY' in /in/7JAFi on line 11 Warning: parse_url() expects exactly 1 parameter, 2 given in /in/7JAFi on line 11 Notice: Use of undefined constant PHP_URL_FRAGMENT - assumed 'PHP_URL_FRAGMENT' in /in/7JAFi on line 12 Warning: parse_url() expects exactly 1 parameter, 2 given in /in/7JAFi on line 12

preferences:
248.33 ms | 406 KiB | 340 Q