Possible Duplicate:
Reference - What does this symbol mean in PHP?
hi i have trouble to understand some of the & operator usage. i have come across with multiple examples and point out only those whitch i dont know what they really do ...
what does it mean when i'm:
1) using & in function name
function &foo() {}
2) using & in function parameter
function foo($id, &$desc) {}
3) usgin & in loop
foreach ($data as $key => &$item) {}