PHP 2차원 배열 최대값

Jmnote (토론 | 기여)님의 2022년 5월 1일 (일) 20:28 판 (새 문서: ==개요== ;PHP 2차원 배열 최대값 <syntaxhighlight lang='php' run> $arr = [[2, 3], [1, 6, 7], [5, 4, 3]]; $max = PHP_INT_MIN; foreach($arr as $nums) { $max = max($max, ma...)
(차이) ← 이전 판 | 최신판 (차이) | 다음 판 → (차이)

1 개요

PHP 2차원 배열 최대값
$arr = [[2, 3], [1, 6, 7], [5, 4, 3]];

$max = PHP_INT_MIN;
foreach($arr as $nums) {
    $max = max($max, max($nums));
}
echo $max; // 7

2 같이 보기

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