Other great little changes: - you can now do function()[0] - Seems like a return to sanity for the PHP team, at least temporarily.. I even kinda like the traits!
Chained string offsets - e.g. $a[0][0] where $a is a string - now work.
I have no idea how is that supposed to work. What should be the outcome on, say: $a = "foo"; $a[0][0]
What about (assuming $a is still "foo"): $a[0][1]
etc.?