3v4l.org

run code in 300+ PHP versions simultaneously
<?php $pages = [ 'a' => ['title' => 'A'], 'c' => ['title' => 'C'], 'b' => ['title' => 'B'], 'n' => ['title' => '.N'], ]; uasort($pages, fn($a, $b) => preg_replace('_^[^0-9a-z]*_', '', strtolower($a['title'])) <=> preg_replace('_^[^0-9a-z]*_', '', strtolower($b['title'])) ); echo implode(', ', array_map(fn($page) => $page['title'], $pages));
Output for git.master, git.master_jit, rfc.property-hooks
A, B, C, .N

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:
113.55 ms | 405 KiB | 5 Q