/ Published in: PHP
Expand |
Embed | Plain Text
function sortiere ( $a, $b ) { if ($a['timestamp'] == $b['timestamp']) { return 0; } if ($a['timestamp'] > $b['timestamp'] ) { return -1; } else { return 1; } }
You need to login to post a comment.
