함수 rsort()

Jmnote (토론 | 기여)님의 2014년 5월 27일 (화) 21:46 판 (→‎PHP)
rsort

1 Bash

ARR=(11 1 2 12)
echo ${ARR[@]}
# 11 1 2 12
RSORTED=`for VALUE in "${ARR[@]}"; do echo $VALUE; done | sort -rn`
echo ${RSORTED[@]}
# 12 11 2 1

2 PHP

$arr = array(11, 1, 2, 12);
rsort($arr);
print_r($arr);
// Array
// (
//     [0] => 12
//     [1] => 11
//     [2] => 2
//     [3] => 1
// )

3 같이 보기

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}