Thx for the reference, I have read the explaination, but I still don't really understand the difference likes:
$bar = new fooclass(); / $bar = & new fooclass();
**As I know, the first script simply create an instance (copy) of the class, but how does the second script mean?
AND
$foo = find_var($bar); / $foo = & find_var($bar);