示例技巧

示例技巧

技巧1:求数组中最大数的下标

$maxValue = max($arr);
echo array_search($maxValue, $arr);

结果:

3

array_search() - 搜索数组中给定的值并返回键名。

Last updated