개발자의 끄적끄적

[php] php ereg_replace 를 preg_replace 로 변경하는 방법 본문

개발/php

[php] php ereg_replace 를 preg_replace 로 변경하는 방법

효벨 2021. 10. 19. 03:00
728x90
반응형

[php] php ereg_replace 를 preg_replace 로 변경하는 방법

 

 

php ereg_replace

 

함수가 5.3 버전이후로

 

없어져서 오류가 나는 경우가 있습니다.

 

그럴때는

 

아래와 같이 

 

ereg_replace 함수를 preg_replace 로 변경해주시면 됩니다!

 

ereg_replace("aaa", " ", $str);

 

위 함수를 아래로 변경하는건 간단하지만!

 

주의할 점은

 

첫번째 인자로 들어가는 패턴에 / 이게 추가된다는점입니다!

 

preg_replace("/aaa/", " ", $str);

 

참고들 하세요!

반응형
Comments