본문 바로가기
Programming/PHP

[PHP] Array and string offset access syntax with curly braces is no longer supported

by Berasix 2023. 2. 1.
반응형

Array and string offset access syntax with curly braces is no longer supported

에러 발생시..

$in = ord($str{$i});

중괄호 메소드는 문자열 내에서 개별 문자를 가져 오는 방법이 더 이상 사용되지 않으므로 다음과같이 변경한다.

$in = ord($str[$i]);

 

728x90

댓글