3v4l.org

run code in 300+ PHP versions simultaneously
<?php $data[] = array('volume' => 67, 'edition' => 2); $data[] = array('volume' => 86, 'edition' => 1); $data[] = array('volume' => 85, 'edition' => 6); $data[] = array('volume' => 98, 'edition' => 2); $data[] = array('volume' => 86, 'edition' => 6); $data[] = array('volume' => 67, 'edition' => 7); $arr = array(); $cert = new stdClass(); $cert->Hash = '1132775296C8A1A3A7BDE742089458B7D3F8FD64'; $cert->SerialNumber = '424DB63300050000D15B'; $cert->KeyDate = date('d.n.Y', strtotime('2009-10-20 12:47:00')); $cert->ExpDate = date('d.n.Y', strtotime('2010-10-20 12:57:00')); $cert->TypeID = 1; $cert->TypeName = 'Федеральный'; $cert->StatusID = 2; $cert->StatusName = 'недействующий'; $cert->PersonID = '581'; $cert->PersonName = 'Иванов Иван Иванович'; $arr[] = $cert; $cert = new stdClass(); $cert->Hash = '2132775296C8A1A3A7BDE742089458B7D3F8FD64'; $cert->SerialNumber = '424DB63300050000D15B'; $cert->KeyDate = date('d.n.Y', strtotime('2010-10-20 12:57:00')); $cert->ExpDate = date('d.n.Y', strtotime('2011-10-20 12:57:00')); $cert->TypeID = 1; $cert->TypeName = 'Федеральный'; $cert->StatusID = 2; $cert->StatusName = 'недействующий'; $cert->PersonID = '581'; $cert->PersonName = 'Петров Петр Петрович'; $arr[] = $cert; $cert = new stdClass(); $cert->Hash = '3132775296C8A1A3A7BDE742089458B7D3F8FD64'; $cert->SerialNumber = '424DB63300050000D15B'; $cert->KeyDate = date('d.n.Y', strtotime('2011-10-20 12:57:00')); $cert->ExpDate = date('d.n.Y', strtotime('2012-10-20 12:57:00')); $cert->TypeID = 1; $cert->TypeName = 'Федеральный'; $cert->StatusID = 2; $cert->StatusName = 'недействующий'; $cert->PersonID = '581'; $cert->PersonName = 'Сидоров Сидр Сидорович'; $arr[] = $cert; $volume = array(); // Получение списка столбцов foreach ($arr as $key => $row) { $volume[$key] = $row->KeyDate; } // Сортируем данные по volume по убыванию и по edition по возрастанию // Добавляем $data в качестве последнего параметра, для сортировки по общему ключу array_multisort($volume, SORT_DESC, $arr); print_r($cert);
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.0 - 5.5.38, 5.6.0 - 5.6.40, 7.0.0 - 7.0.33, 7.1.0 - 7.1.33, 7.2.0 - 7.2.33, 7.3.0 - 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
stdClass Object ( [Hash] => 3132775296C8A1A3A7BDE742089458B7D3F8FD64 [SerialNumber] => 424DB63300050000D15B [KeyDate] => 20.10.2011 [ExpDate] => 20.10.2012 [TypeID] => 1 [TypeName] => Федеральный [StatusID] => 2 [StatusName] => недействующий [PersonID] => 581 [PersonName] => Сидоров Сидр Сидорович )

preferences:
307.7 ms | 406 KiB | 460 Q