PHP中in_array 效率极其优化

Posted weihua2018

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP中in_array 效率极其优化相关的知识,希望对你有一定的参考价值。

//数组key与value翻转,通过isset判断key是否存在于数组中

public static function inArray ($item, $array) {

  $flipArray = array_flip($array);

  return isset($flipArray[$item]);

}


以上是关于PHP中in_array 效率极其优化的主要内容,如果未能解决你的问题,请参考以下文章

php in_array() 循环大量数组时效率特别慢问题

php查找数组元素,提速

in_array 和 isset的效率

in_array 和 isset的效率

php in_array函数的使用

转 PHP in_array() 函数