Array and string offset access syntax with curly braces is deprecated

zhang_you_wu發表於2024-06-23

rray and string offset access syntax with curly braces is deprecated PHP7.4不再支援使用大括號訪問陣列以及字串的偏移_PHP程式碼 php7.4不支援陣列{}寫法,統一為陣列[]

解決辦法:

陣列{}寫法,統一為陣列[]

$s{0} 改為$s[0]

相關文章