是否有机会使用非区分大小写的搜索来搜索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需要一个字符串,而不是使用数组。
答案 0 :(得分:5)
只做
$checkAuth = preg_grep("/CN=".$cn_name."/i", $entries[0]["member"]);
preg_grep
和preg_match
都使用PCRE模式