<?php $arr = array('2013-02-01','2000-02-01','2016-02-17','0000-00-00','0000-00-00','0000-00-00'); sort( $arr ); usort( $arr, function( $a, $b ) { if ( $a === $b ) return 0; if ( strpos( $b, '0000' ) !== false ) return -1; return ( $a < $b ) ? -1 : 1; }); print_r( $arr );
You have javascript disabled. You will not be able to edit any code.