I try to solve an error:
Array and string offset access syntax with curly braces is deprecated
for($x = 0, $y = strlen($data); !$bad && $x < $y; $x++)
{
$bad = (ord($data{$x}) > 127);
}
How to solve this PHP loop?