Jun 24 2009

Difference between parsing variable and parsing reference

I found an interesting code when I’m coding.

what is difference between :

$_fx = &$a ;

with

$_fx = $a ;

The first one, we call it parsing reference, and the second one , is parsing value.

you can see the difference with this sample :

WordPress Themes