在PHP中,eregi
函數已經在PHP 5.3.0版本中被棄用,并在PHP 7.0.0版本中移除。替代eregi
函數的函數是preg_match
函數。preg_match
函數也可以用來進行正則表達式的匹配,但是在使用時需要使用i
修飾符來進行不區分大小寫的匹配。例如,preg_match
的使用方式如下:
$string = "Hello, World!";
if (preg_match("/hello/i", $string)) {
echo "Match found!";
} else {
echo "Match not found!";
}
上面的代碼將會輸出Match found!
,因為在正則表達式中使用了i
修飾符進行不區分大小寫的匹配。