• 회원가입
  • 로그인
  • 구글아이디로 로그인

[web] PHP - php7.2.10 Deprecated: Function create_function() is deprecated in .. 에러 해결 예제

5,791  

예1


수정 전

$callbacks[$delimiter] = create_function('$matches', "return '$delimiter' . strtolower(\$matches[1]);");


수정 후

$callbacks[$delimiter] = function($matches) use ($delimiter) {

    return $delimiter . strtolower($matches[1]);

};

 

https://stackoverflow.com/questions/48161526

 

 

 

 

 


분류 제목
게시물이 없습니다.
목록
찾아주셔서 감사합니다. Since 2012