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)); var_dump(parse_url($url, PHP_URL_PATH)); var_dump(parse_url($url, PHP_URL_SCHEME)); var_dump(parse_url($url, PHP_URL_HOST)); var_dump(parse_url($url, PHP_URL_PORT)); var_dump(parse_url($url, PHP_URL_USER)); var_dump(parse_url($url, PHP_URL_PASS)); var_dump(parse_url($url, PHP_URL_QUERY)); var_dump(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.0 - 5.5.38, 5.6.0 - 5.6.40, 7.0.0 - 7.0.33, 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.28, 8.2.0 - 8.2.18, 8.3.0 - 8.3.6
Array ( [scheme] => http [host] => hostname [port] => 9090 [user] => username [pass] => password [path] => /path [query] => arg=value [fragment] => anchor ) string(5) "/path" string(4) "http" string(8) "hostname" int(9090) string(8) "username" string(8) "password" string(9) "arg=value" string(6) "anchor"
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/M6tHN on line 5 Warning: parse_url() expects exactly 1 parameter, 2 given in /in/M6tHN on line 5 NULL Notice: Use of undefined constant PHP_URL_SCHEME - assumed 'PHP_URL_SCHEME' in /in/M6tHN on line 6 Warning: parse_url() expects exactly 1 parameter, 2 given in /in/M6tHN on line 6 NULL Notice: Use of undefined constant PHP_URL_HOST - assumed 'PHP_URL_HOST' in /in/M6tHN on line 7 Warning: parse_url() expects exactly 1 parameter, 2 given in /in/M6tHN on line 7 NULL Notice: Use of undefined constant PHP_URL_PORT - assumed 'PHP_URL_PORT' in /in/M6tHN on line 8 Warning: parse_url() expects exactly 1 parameter, 2 given in /in/M6tHN on line 8 NULL Notice: Use of undefined constant PHP_URL_USER - assumed 'PHP_URL_USER' in /in/M6tHN on line 9 Warning: parse_url() expects exactly 1 parameter, 2 given in /in/M6tHN on line 9 NULL Notice: Use of undefined constant PHP_URL_PASS - assumed 'PHP_URL_PASS' in /in/M6tHN on line 10 Warning: parse_url() expects exactly 1 parameter, 2 given in /in/M6tHN on line 10 NULL Notice: Use of undefined constant PHP_URL_QUERY - assumed 'PHP_URL_QUERY' in /in/M6tHN on line 11 Warning: parse_url() expects exactly 1 parameter, 2 given in /in/M6tHN on line 11 NULL Notice: Use of undefined constant PHP_URL_FRAGMENT - assumed 'PHP_URL_FRAGMENT' in /in/M6tHN on line 12 Warning: parse_url() expects exactly 1 parameter, 2 given in /in/M6tHN on line 12 NULL

preferences:
284.43 ms | 406 KiB | 459 Q