3v4l.org

run code in 300+ PHP versions simultaneously
<?php $url = 'http://username:password@hostname/path?arg=value#anchor'; print_r(parse_url($url)); 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.24 - 5.5.35, 5.6.8 - 5.6.28, 7.0.0 - 7.0.20, 7.1.0 - 7.1.20, 7.2.6 - 7.2.33, 7.3.16 - 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.4, 8.3.6
Array ( [scheme] => http [host] => hostname [user] => username [pass] => password [path] => /path [query] => arg=value [fragment] => anchor ) string(8) "hostname" NULL string(8) "username" string(8) "password" string(9) "arg=value" string(6) "anchor"
Output for 8.3.5
Warning: PHP Startup: Unable to load dynamic library 'sodium.so' (tried: /usr/lib/php/8.3.5/modules/sodium.so (libsodium.so.23: cannot open shared object file: No such file or directory), /usr/lib/php/8.3.5/modules/sodium.so.so (/usr/lib/php/8.3.5/modules/sodium.so.so: cannot open shared object file: No such file or directory)) in Unknown on line 0 Array ( [scheme] => http [host] => hostname [user] => username [pass] => password [path] => /path [query] => arg=value [fragment] => anchor ) string(8) "hostname" NULL 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 [user] => username [pass] => password [path] => /path [query] => arg=value [fragment] => anchor ) Notice: Use of undefined constant PHP_URL_HOST - assumed 'PHP_URL_HOST' in /in/ETRNE on line 6 Warning: parse_url() expects exactly 1 parameter, 2 given in /in/ETRNE on line 6 NULL Notice: Use of undefined constant PHP_URL_PORT - assumed 'PHP_URL_PORT' in /in/ETRNE on line 7 Warning: parse_url() expects exactly 1 parameter, 2 given in /in/ETRNE on line 7 NULL Notice: Use of undefined constant PHP_URL_USER - assumed 'PHP_URL_USER' in /in/ETRNE on line 8 Warning: parse_url() expects exactly 1 parameter, 2 given in /in/ETRNE on line 8 NULL Notice: Use of undefined constant PHP_URL_PASS - assumed 'PHP_URL_PASS' in /in/ETRNE on line 9 Warning: parse_url() expects exactly 1 parameter, 2 given in /in/ETRNE on line 9 NULL Notice: Use of undefined constant PHP_URL_QUERY - assumed 'PHP_URL_QUERY' in /in/ETRNE on line 10 Warning: parse_url() expects exactly 1 parameter, 2 given in /in/ETRNE on line 10 NULL Notice: Use of undefined constant PHP_URL_FRAGMENT - assumed 'PHP_URL_FRAGMENT' in /in/ETRNE on line 11 Warning: parse_url() expects exactly 1 parameter, 2 given in /in/ETRNE on line 11 NULL

preferences:
197.64 ms | 405 KiB | 310 Q