Forum Moderators: coopster
Is it better to use ' or " in echoes and strings? If I can remember correctly, the way it was explained to me was that " in strings stores it for awhile in memory or something, while ' stores it just for that usage. I've also heard that using ' instead of " supposedly helps speed your application up a bit.
In any case, which should I be using? I've so far been using ' for most everything (unless " is needed).
Basically, you can use either one without any significant difference in speed. Technically double quotes would take longer because it has to look for variables within the string, but it shouldn't account for much.