Сортировка массива по значению.


	usort($arResult["ACTIVE_TO"], function($a1, $a2) {
		$v1 = strtotime($a1);
		$v2 = strtotime($a2);
		return $v1 - $v2; // $v2 - $v1 to reverse direction
	});
	echo"
";print_r($arResult["ACTIVE_TO"]);echo"
";

Возврат к списку