use of `&` keyword in PHP

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

I find it difficult searching this in google, what's the use of the & keyword in PHP? A handful of examples would greatly help. Thank you, I'm a java student.


Passing by reference.Check this link

http://theserverpages.com/php/manual/en/language.references.pass.php

http://www.php.net/manual/en/language.references.return.php


变量前面的和号表示它是对变量的引用而不是值的副本。

链接地址: http://www.djcxy.com/p/57260.html

上一篇: 如何用rspec和机架测试标题

下一篇: 在PHP中使用`&`关键字