I looked at one of the post on SO about what will break when PHP6 is released. I have a few questions below about some of the stuff...
1)
{} for string offsets no longer available.
what does this mean?
2)
[] un-deprecated for accessing characters in a string.
what does this mean?
3)
var will be an alias of public, and raises E_STRICT warning.
what does this mean? I often see var $stringname in classes
4)
Fileinfo moved to the core.
what does this mean?
5)
opcode cache included in core distribution, but turned off by default.
Does this mean that there will be no reason to use an opcode cache like APC?