我有一个字符串“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吗?