Caseless için () in_array'in nasıl kullanılır?

3 Cevap

Büyük bir dizi, bu yüzden ben her değeri strtolower için olmaz.

3 Cevap

preg_grep with the case insensitivity flag “i "kullanın:

$result = preg_grep('/pattern/i', $array);

Ben strtolower sadece yolu vardır bildiğiniz gibi. Ayrıca PHP doc Yorum bakınız: http://ch2.php.net/manual/en/function.in-array.php#88554

Edit: As you can see in the comment, there is of course more than one way to solve it. I probably miss spelled what I tried to say ;-). Sorry.