Posted by Chameleon on 12/03/05 19:24
Chameleon wrote:
> -------
> $a = array(............);
> $b = $a;
> -------
> php says that $b points to $a until $b or $a changes.
> this means that the code above wants the same time with the code below:
> -------
> $a = $a = array(............);
error: I mean
$a = array(............);
> $b = & $a;
> -------
Navigation:
[Reply to this message]
|