"PHP usort()"의 두 판 사이의 차이

 
(같은 사용자의 중간 판 2개는 보이지 않습니다)
4번째 줄: 4번째 줄:


<syntaxhighlight lang='php' run>
<syntaxhighlight lang='php' run>
<?php
function cmp($a, $b) {
function cmp($a, $b) {
     if ($a == $b) {
     if ($a == $b) return 0;
        return 0;
    }
     return ($a < $b) ? -1 : 1;
     return ($a < $b) ? -1 : 1;
}
}
18번째 줄: 15번째 줄:
     echo "$key: $value\n";
     echo "$key: $value\n";
}
}
</syntaxhighlight>
<syntaxhighlight lang='php' run>
function cmp($a, $b) {
    return strcmp($a["fruit"], $b["fruit"]);
}
$fruits[0]["fruit"] = "lemons";
$fruits[1]["fruit"] = "apples";
$fruits[2]["fruit"] = "grapes";
usort($fruits, "cmp");
print_r($fruits);
</syntaxhighlight>
</syntaxhighlight>



2021년 2월 16일 (화) 21:22 기준 최신판

1 개요[ | ]

PHP usort()
  • Sort an array by values using a user-defined comparison function
function cmp($a, $b) {
    if ($a == $b) return 0;
    return ($a < $b) ? -1 : 1;
}

$a = [3, 2, 5, 6, 1];
usort($a, "cmp");

foreach ($a as $key => $value) {
    echo "$key: $value\n";
}
function cmp($a, $b) {
    return strcmp($a["fruit"], $b["fruit"]);
}

$fruits[0]["fruit"] = "lemons";
$fruits[1]["fruit"] = "apples";
$fruits[2]["fruit"] = "grapes";
usort($fruits, "cmp");

print_r($fruits);

2 같이 보기[ | ]

3 참고[ | ]

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