Posted by Mladen Gogala on 05/15/06 06:16
On Sun, 14 May 2006 11:10:19 -0700, howachen wrote:
> how about PHP4? need explictly use reference?
PHP is not Perl. You don't have constructs like \$a and "bless \$a class".
You can explicitly force access by reference by using something like
foreach ($array as &$iterator) but you can't manipulate pointers the way
you do in Perl.
--
http://www.mgogala.com
[Back to original message]
|