preg_grep搜索非区分大小写

时间:2013-09-23 08:16:49

标签: php preg-match case-sensitive

是否有机会使用非区分大小写的搜索来搜索preg_grep输入?

$checkAuth = preg_grep("/CN=".$cn_name."/", $entries[0]["member"]);

cn_name可以是大写和小写,但它只能使用正确的区分大小写的名称。我知道,preg_match可以像“i”一样使用:

preg_match("/php/i", "PHP is the web scripting language of choice.")

但是preg_match需要一个字符串,而不是使用数组。

1 个答案:

答案 0 :(得分:5)

只做

$checkAuth = preg_grep("/CN=".$cn_name."/i", $entries[0]["member"]);

preg_greppreg_match都使用PCRE模式