3v4l.org

run code in 300+ PHP versions simultaneously
<?php function sortByDefault(array $domains, $default='com') { $GLOBALS['defaulttld'] = $default; if (!function_exists('tldsort')) { function tldsort($a, $b) { $default = $GLOBALS['defaulttld']; if ($a['tld'] == $default) { return -1; } elseif ($b['tld'] == $default) { return 1; } elseif ($a['tld'] == 'net') { return -1; } elseif ($b['tld'] == 'net') { return 1; } elseif ($a['tld'] == 'org') { return -1; } elseif ($b['tld'] == 'org') { return 1; } elseif ($a['tld'] == 'us') { return -1; } elseif ($b['tld'] == 'us') { return 1; } elseif ($a['tld'] == 'biz') { return -1; } elseif ($b['tld'] == 'biz') { return 1; } elseif ($a['tld'] == 'info') { return -1; } elseif ($b['tld'] == 'info') { return 1; } else { return strcmp($a['tld'], $b['tld']); } } } uasort($domains, 'tldsort'); return $domains; } $domains = array('google.com', 'google.net', 'google.org', 'google.us', 'google.biz', 'google.info'); $domains = array_map($domains, function($d) { list($name, $tld) = explode('.', $d); return array('name' => $name, 'tld' => $tld); }); var_dump(sortByDefault($domains, 'biz'));
Output for git.master, git.master_jit, rfc.property-hooks
Fatal error: Uncaught TypeError: array_map(): Argument #1 ($callback) must be a valid callback or null, array callback must have exactly two members in /in/KZ4lU:44 Stack trace: #0 /in/KZ4lU(44): array_map(Array, Object(Closure)) #1 {main} thrown in /in/KZ4lU on line 44
Process exited with code 255.

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:
43.04 ms | 401 KiB | 8 Q