PHP 배열순설정
언제인가 어느 분이 질문이 계셨습니다.
[code]
$fruits = array("[100] 사과" => 2, "[1] 바나나" => 3, "[200] 딸기" => 1, "[150] 오렌지" => 4);
sort($fruits);
print_r($fruits);
[1] 바나나
[100] 사과
[150] 오렌지
[200] 딸기
이렇게 순서대로 나오게 할수는 없는건가요?
[/code]
PHP는 배열관련 기능을 잘 지원합니다.
[code]
$array = array("[100] 사과" => 2, "[1] 바나나" => 3, "[200] 딸기" => 1, "[150] 오렌지" => 4);
$keys = array_keys($array);
//sort($keys);
asort($keys, SORT_STRING | SORT_FLAG_CASE | SORT_NATURAL);
$result = array_combine($keys, array_values($array));
var_dump($result);
만일
$fruits = array("[100] 사과" , "[1] 바나나" , "[200] 딸기" , "[150] 오렌지"); 이라면
asort($fruits , SORT_STRING | SORT_FLAG_CASE | SORT_NATURAL);
var_dump($fruits);
결과는
[1] 바나나
[100] 사과
[150] 오렌지
[200] 딸기
[/code]
감사합니다.
댓글 1개
조선족감별기
2년 전
아우 짱꺠냄새
게시판 목록
개발자팁
개발과 관련된 유용한 정보를 공유하세요.
질문은 QA에서 해주시기 바랍니다.
질문은 QA에서 해주시기 바랍니다.
| 번호 | 분류 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|---|
| 4856 | PHP | 7년 전 | 5731 | ||
| 4855 | jQuery | 7년 전 | 3235 | ||
| 4854 | jQuery | 7년 전 | 2226 | ||
| 4853 | jQuery | 7년 전 | 2827 | ||
| 4852 | MySQL | 7년 전 | 2993 | ||
| 4851 | jQuery | 7년 전 | 2339 | ||
| 4850 | jQuery | 7년 전 | 2569 | ||
| 4849 | jQuery | 7년 전 | 4308 | ||
| 4848 | PHP |
|
7년 전 | 4246 | |
| 4847 | jQuery | 7년 전 | 4019 | ||
| 4846 | jQuery | 7년 전 | 2631 | ||
| 4845 | jQuery | 7년 전 | 2151 | ||
| 4844 | jQuery | 7년 전 | 2300 | ||
| 4843 | jQuery | 7년 전 | 3054 | ||
| 4842 | jQuery | 7년 전 | 2898 | ||
| 4841 | jQuery | 7년 전 | 2229 | ||
| 4840 | jQuery | 7년 전 | 1567 | ||
| 4839 | jQuery | 7년 전 | 2467 | ||
| 4838 | jQuery |
이에스씨코리아
|
7년 전 | 2314 | |
| 4837 | jQuery | 7년 전 | 2162 | ||
| 4836 | jQuery | 7년 전 | 2087 | ||
| 4835 | jQuery | 7년 전 | 1821 | ||
| 4834 | jQuery | 7년 전 | 1865 | ||
| 4833 | jQuery | 7년 전 | 1993 | ||
| 4832 | jQuery | 7년 전 | 2184 | ||
| 4831 | jQuery | 7년 전 | 2364 | ||
| 4830 | jQuery | 7년 전 | 2630 | ||
| 4829 | jQuery | 7년 전 | 1802 | ||
| 4828 | jQuery | 8년 전 | 2745 | ||
| 4827 | jQuery | 8년 전 | 2285 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기