php 5.3대로 업데이 후 특정 함수를 사용할수 없다.

 

 ereg,eregi,ereg_replace 함수 사용시 오류 메세지가 나온다.

 

 ereg() ==> preg_match(), preg_match_all()

 eregi() ==>preg_match(), preg_match_all()

 ereg_replace() ==> preg_replace(), str_replace()

 split() ==> preg_split(), explode()

 

 등으로 변경 되어야 합니다.