0

Possible Duplicate:
Reference - What does this symbol mean in PHP?

What is the use of the & keyword in PHP?

nyedidikeke
  • 6,899
  • 7
  • 44
  • 59
Jürgen Paul
  • 14,299
  • 26
  • 93
  • 133

2 Answers2

0

An ampersand preceding a variable means it is a reference to a variable instead of a copy of a value.

John P
  • 15,035
  • 4
  • 48
  • 56