哪个是从两个大型数组中提取匹配字符串的最佳方法?

时间:2014-02-08 17:09:12

标签: php

我有一个字符串“Sony”和两个大型阵列ARRAYONE,ARRAYTWO。 我需要从这两个数组中找到索尼。

My Approach is :
foreach($ARRAYONE as $string1)
{
if('Sony' ==  $string) break;
    matchedElement =  $string1;
} 
foreach($ARRAYTWO as $string2)
{
if('Sony' == $string2) break;
   matchedElement = $string2
}

return matchedElement;

这是RightWay吗?

1 个答案:

答案 0 :(得分:0)

使用array_search功能执行此操作。