Hi everybody,
 Can any one tell me, what is the use of ampersand '&' in php? Is it
a pointer operator like 'C' language? Kindly note the example....

<?php
$a=1;
$b=& $a;
$c=$a;
echo $b,$c;
?>

 After running this example I got result 1 for both variable $b and
$c. Why so?

--Nirmalya

__________________________________________________
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to