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

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

12,901  

예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

 

 

 

 

 


분류 제목
pc 윈도우10 - 키보드 특정 키 입력 에러 해결. (= 윈도우 구성 파일 손상 복구 = 윈도우 이미지 복원) …
web 크롬에서 화면 클릭 시 커서 (= 세로 검은선/검정선/검은색/검정색/세로막대) 깜빡깜빡임 증상 (제거/없애기…
pc 크롬 글꼴 깨짐 방지법 (=크롬 글자 흐림 제거법) 1
163/163
목록
찾아주셔서 감사합니다. Since 2012