Why are double quotes preferred over single quotes for string literals?
It means that every time there is a double quote character it takes up twice the space in the core or in plugins because it has to be escaped.
Single quotes don't have to be escaped so why not use those whenever possible?
I'm just asking because I'm finding it reduces size, increases speed and the only exception I can find to using single over double is triple.
Why are double quotes preferred over single quotes for string literals? It means that every time there is a double quote character it takes up twice the space in the core or in plugins because it has to be escaped. Single quotes don't have to be escaped so why not use those whenever possible? I'm just asking because I'm finding it reduces size, increases speed and the only exception I can find to using single over double is triple.