> For the complete documentation index, see [llms.txt](https://phper.shujuwajue.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://phper.shujuwajue.com/shu-zu/shi-li-ji-qiao.md).

# 示例技巧

## 示例技巧

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

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

结果:

```
3
```

[array\_search()](http://www.w3school.com.cn/php/func_array_search.asp) - 搜索数组中给定的值并返回键名。
