1. 程式人生 > >php 7 egreg 方法不存在 解決方法

php 7 egreg 方法不存在 解決方法

* 用preg_match替換

if (!function_exists("ereg")) {
	function ereg(string $pattern, string $string, array &$regs = []) {
		return preg_match('/'. str_replace('/', '\\/', $pattern).'/', $string, $regs);
	}
}

if (!function_exists("eregi")) {
	function eregi(string $pattern, string $string, array &$regs = []) {
		return preg_match('/'. str_replace('/', '\\/', $pattern).'/i', $string, $regs);
	}
}