3v4l.org

run code in 300+ PHP versions simultaneously
<?php $original_values = array( 'Bridge Work' => array( array('Name' => 'NJ Trunpike_Bridge Repair Work', 'Location' => 'New Jersey', 'State' => 'New Jersey'), array('Name' => 'Honoapiilani Highway Bridge Truss', 'Location' => 'Maui', 'State' => 'Hawaii'), array('Name' => 'BlueCross Blueshield of Tennessee (Bridge)', 'Location' => 'Memphis', 'State' => 'Tennessee'), array('Name' => 'Henderson Center Connector Bridge', 'Location' => 'Coquitlam', 'State' => 'British Columbia'), ), 'Educational' => array( array('Name' => 'RTI TASS Complex Admin Bldg', 'Location' => 'Bluffdale', 'State' => 'Utah'), array('Name' => 'Auburn High School', 'Location' => 'Auburn', 'State' => 'Washington'), array('Name' => 'Reed College', 'Location' => 'Portland', 'State' => 'Oregon'), array('Name' => 'Shorewood High School', 'Location' => 'Shoreline', 'State' => 'Washington'), ),); function my_sort($my_array, $my_key) { $sorted_values = array(); foreach($my_array as $key => $value) { $columns = null; foreach ($value as $index => $element) { $columns[] = $element[$my_key]; } $temp = $value; array_multisort($columns, SORT_ASC, $temp); $sorted_values[$key] = $temp; } return $sorted_values; } $result = my_sort($original_values, 'State'); echo '<pre>'; print_r($result); echo '</pre>';
Output for 4.3.0 - 4.3.11, 4.4.0 - 4.4.9, 5.0.0 - 5.0.5, 5.1.0 - 5.1.6, 5.2.0 - 5.2.17, 5.3.0 - 5.3.29, 5.4.0 - 5.4.45, 5.5.24 - 5.5.35, 5.6.8 - 5.6.28, 7.0.0 - 7.0.20, 7.1.0 - 7.1.10, 7.2.0 - 7.2.33, 7.3.12 - 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.6
<pre>Array ( [Bridge Work] => Array ( [0] => Array ( [Name] => Henderson Center Connector Bridge [Location] => Coquitlam [State] => British Columbia ) [1] => Array ( [Name] => Honoapiilani Highway Bridge Truss [Location] => Maui [State] => Hawaii ) [2] => Array ( [Name] => NJ Trunpike_Bridge Repair Work [Location] => New Jersey [State] => New Jersey ) [3] => Array ( [Name] => BlueCross Blueshield of Tennessee (Bridge) [Location] => Memphis [State] => Tennessee ) ) [Educational] => Array ( [0] => Array ( [Name] => Reed College [Location] => Portland [State] => Oregon ) [1] => Array ( [Name] => RTI TASS Complex Admin Bldg [Location] => Bluffdale [State] => Utah ) [2] => Array ( [Name] => Auburn High School [Location] => Auburn [State] => Washington ) [3] => Array ( [Name] => Shorewood High School [Location] => Shoreline [State] => Washington ) ) ) </pre>

preferences:
258.02 ms | 410 KiB | 312 Q