Re: Speeding question, " vs '



On 30 Apr, 13:08, jodleren <sonn...@xxxxxx> wrote:
Hi!

It just crossed my mind, that I usually do it like this:

$whatver=$_POST["returned_value"];

instead of

$whatver=$_POST['returned_value'];

The latter should be faster, as within ' nothing is replaced as in ".
I now wornder, what difference this makes in speed?
It should make some, but not really.... then again, with 10000000
users, it might.

What do you do?


If it it was that important to me I'd:
1) research the issue - which is well documented
2) test it for myself

and perhaps even share my findings.

C.
.