3v4l.org

run code in 300+ PHP versions simultaneously
<?php const URLS = [ "http://site.com/", "http://site.com/save", "http://site.com/save/results", "http://site.com/save/results/path", "http://site.com/path/save/results", "http://site.com/save/path", "http://site.com/path/results", "http://site.com/Crawler4", "http://site.com/Crawler", ]; $seen = []; $siteStructure = []; foreach (URLS as $url) { $domainUrl1 = parse_url($url, PHP_URL_SCHEME); $domainUrl2 = parse_url($url, PHP_URL_HOST); $domainPath = parse_url($url, PHP_URL_PATH); $paths = preg_split('/[^a-zA-Z0-9]+/', $domainPath, 0, PREG_SPLIT_NO_EMPTY); $domainUrl = $domainUrl1 . '://' . $domainUrl2; array_unshift($paths, $domainUrl); $paths = array_flip($paths); foreach ($paths as $key => $value){ if ($key != [0-9] && is_array($value) == false){ if ($value == 0){ $siteStructure[$key] = []; } elseif ($value >= 0 ){ $keybefore = $value - 1; $keys = array_keys($paths)[$keybefore]; $siteStructure[$keys] = [$key => $keybefore]; } } } } var_dump($siteStructure);
Output for 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.4, 8.3.6
array(4) { ["http://site.com"]=> array(1) { ["Crawler"]=> int(0) } ["save"]=> array(1) { ["path"]=> int(1) } ["results"]=> array(1) { ["path"]=> int(2) } ["path"]=> array(1) { ["results"]=> int(1) } }
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(4) { ["http://site.com"]=> array(1) { ["Crawler"]=> int(0) } ["save"]=> array(1) { ["path"]=> int(1) } ["results"]=> array(1) { ["path"]=> int(2) } ["path"]=> array(1) { ["results"]=> int(1) } }

preferences:
127.56 ms | 402 KiB | 150 Q