<?php $pages = [ 'a2' => ['title' => '.a'], 'a1' => ['title' => 'A'], 'c1' => ['title' => 'C'], 'c2' => ['title' => 'C100'], 'c3' => ['title' => 'C3'], 'c4' => ['title' => 'c22'], 'b' => ['title' => 'B'], 'c25' => ['title' => 'c'], 'n' => ['title' => '.N'], ]; $titles = array_column($pages, 'title'); array_multisort( preg_replace('/^[^0-9a-z]+/i', '', $titles), SORT_STRING|SORT_FLAG_CASE, $titles ); echo implode(', ', $titles);
You have javascript disabled. You will not be able to edit any code.