19
7

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

PHP 配列で要素の値が最大値のキー名を取得(要素の値の数値が最大になるキーを取得したい)

Last updated at Posted at 2018-09-27

PHP 配列で値が最大の要素のキー名を取得したい

php 配列 値 最大値のキー」を Qiita に絞り込んで検索してもドンピシャなのが出てこなかったので自分のググラビリティとして。

TL; DR (今北産業)

$maxes   = array_keys($array, max($array)); // 値が最大の要素を抜き出す
$key_max = $maxes[0]; // 最初に出現した最大値のキー名を返す
  • array_keys」 @ PHP マニュアル
  • max」 @ PHP マニュアル

TS; DR

データ
$array = [
    'banana' => 4,
    'carrot' => 1,
    'daikon' => 12, // <- 値 MAX
    'egg'    => 1,
    'apple'  => 12, // <- 値 MAX
];
最大値が出現した順に取得
$maxes = array_keys($array, max($array));
var_export($maxes);
結果
array (
  0 => 'daikon',
  1 => 'apple',
)
キーをソートしてから取得
ksort($array, SORT_NATURAL);
$maxes = array_keys($array, max($array));
var_export($maxes);
結果
array (
  0 => 'apple',
  1 => 'daikon',
)

動作確認

  • PHP v5.6.40, v7.1.33, v7.4.4

参考文献

19
7
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
19
7

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?