in_array() and multidimensional array

前端 未结 22 1352
眼角桃花
眼角桃花 2020-11-22 00:30

I use in_array() to check whether a value exists in an array like below,

$a = array(\"Mac\", \"NT\", \"Irix\", \"Linux\");
if (in_array(\"Irix\"         


        
22条回答
  •  情话喂你
    2020-11-22 01:20

    what about array_search? seems it quite faster than foreach according to https://gist.github.com/Ocramius/1290076 ..

    if( array_search("Irix", $a) === true) 
    {
        echo "Got Irix";
    }
    

提交回复
热议问题