<?php $pages = [ 'a' => ['title' => 'A'], 'c' => ['title' => 'C'], 'b' => ['title' => 'B'], 'n' => ['title' => '.N'], ]; array_multisort($pages, SORT_ASC, SORT_STRING, array_map(fn($page) => preg_replace('_^[^0-9a-z]*_', '', strtolower($page['title'])), $pages)); echo implode(', ', array_map(fn($page) => $page['title'], $pages));
You have javascript disabled. You will not be able to edit any code.