본문 바로가기

PHP/간단한 회원관리 프로그램 만들기

pear install 중 에러

반응형
C:\xampp\php>pear install pear/HTML_Common
PHP Fatal error:  Array and string offset access syntax with curly braces is no longer supported in C:\xampp\php\pear\PEAR\Config.php on line 2095

위와 같은 에러가 나서 해당 코드를 찾아봄.

if (preg_match('/^[a-z]:/i', $prepend)) {
    $prepend = substr($prepend, 2);
} elseif ($prepend{0} != '\\') {
    $prepend = "\\$prepend";
}

 

에러로 구글링하니까 

중괄호를 대괄호로 바꾸면 된다고 함.

https://stackoverflow.com/questions/63611924/phpexcel-error-array-and-string-offset-access-syntax-with-curly-braces-is-depre

 

PHPExcel Error: Array and string offset access syntax with curly braces is deprecated

I've just updated my phpexcel to phpspreadsheet, and I noticed this error pops up: ErrorException (E_DEPRECATED) Array and string offset access syntax with curly braces is deprecated require 'Cla...

stackoverflow.com

 

반응형