It isn't documented anywhere that I can find, but there is another change to the string warnings in php7.1
$x = "";
$x['foo'] = 'bar';
Will quietly convert $x to an array in php70. In php71 it will emit a warning and set the first character of $x to 'b' (roughly interpreting the line as $x[0] = 'b';)