PHP 5.3.0 이후로 ereg() , eregi() 함수는 없어졌다.
아래와 같이 대체함수로 사용이 가능하다
예시)
$pattern = 'abcd';
$string = 'abcdtest';
ereg($pattern," ",$string); // Bad;
preg_match("/".$pattern."/"," ",$string); //Good!
eregi($pattern," ",$string); // Bad;
preg_match("/".$pattern."/i"," ",$string); // Good!
'Language > PHP' 카테고리의 다른 글
PHP Warning : trim() expects parameter 1 to be string, array given in (0) | 2020.03.11 |
---|---|
[Deprecated] while(list($key, $value) = each($array)) 대체 (0) | 2020.03.11 |
[Deprecated] ereg_replace , eregi_replace() 대체 (0) | 2020.03.10 |
AH02429: Response header name 'Last-Modified ' 에러 (0) | 2020.03.10 |
PHP Fatal error: Uncaught Error: Call to undefined function (0) | 2020.03.10 |