Deprecated: Array and string offset access syntax with curly braces is deprecated in /www/lib/functions.php on line 548 Posted on 2021년 9월 27일Updated on 2021년 9월 27일by 관리자카테고리:Uncategorized since PHP 7.4 curly braces method to get individual characters inside a string has been deprecated, so change the above syntax into this: PHP $array = array(); $i = 0; while ($i < $len) { $key = NULL; for ($j = 0; $j < $split; $j += 1) { $key .= $text{$i}; $i += 1; } $array[] = $key; } return $array; 123456789101112131415161718192021 $array = array(); $i = 0; while ($i < $len) { $key = NULL; for ($j = 0; $j < $split; $j += 1) { $key .= $text{$i}; $i += 1; } $array[] = $key; } return $array; Modify Vim $key .= $text[$i]; // modify 123 $key .= $text[$i]; // modify
댓글