PHP 7.4 fix, don't use curly braces for array/string offset
The array and string offset access syntax using curly braces is deprecated. Use $str[$idx] instead of $str{$idx}. RFC: https://wiki.php.net/rfc/deprecate_curly_braces_array_accesspull/69/head
parent
f37231eb3a
commit
f6f6d0fb56
|
@ -67,7 +67,7 @@ class H5PDevelopment {
|
||||||
$contents = scandir($path);
|
$contents = scandir($path);
|
||||||
|
|
||||||
for ($i = 0, $s = count($contents); $i < $s; $i++) {
|
for ($i = 0, $s = count($contents); $i < $s; $i++) {
|
||||||
if ($contents[$i]{0} === '.') {
|
if ($contents[$i][0] === '.') {
|
||||||
continue; // Skip hidden stuff.
|
continue; // Skip hidden stuff.
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -2744,7 +2744,7 @@ class H5PCore {
|
||||||
foreach ($arr as $key => $val) {
|
foreach ($arr as $key => $val) {
|
||||||
$next = -1;
|
$next = -1;
|
||||||
while (($next = strpos($key, '_', $next + 1)) !== FALSE) {
|
while (($next = strpos($key, '_', $next + 1)) !== FALSE) {
|
||||||
$key = substr_replace($key, strtoupper($key{$next + 1}), $next, 2);
|
$key = substr_replace($key, strtoupper($key[$next + 1]), $next, 2);
|
||||||
}
|
}
|
||||||
|
|
||||||
$newArr[$key] = $val;
|
$newArr[$key] = $val;
|
||||||
|
|
Loading…
Reference in New Issue