类文件中的方法名前加上一个&符号是什么意义

WBOY
Release: 2016-06-13 12:12:05
Original
1729 people have browsed it

类文件中的方法名前加上一个&符号是什么意思
class foo {
    public $value = 42;

    public function &getValue() {
        return $this->value;
    }
}
上面代码中getValue前的&符号是什么意思?有什么作用?
------解决思路----------------------
$var = getValue() ; 
$var = &getValue() ; 

这两个的差别,你研究一下。
------解决思路----------------------
前导的 & 表示可以返回一个引用

如果 E_STRICT 级别错误检查未打开,则有没有都一样。否则将产生 
Strict Standards:  Only variables should be assigned by reference 

$p = new foo;<br />echo $n =& $p->getValue();<br />$n++;<br />echo $p->getValue();<br />
Copy after login

------解决思路----------------------
说白了函数名用一个变 量来代替,这里可以理解为引用吧,我回答问题从来不比喻,不弯拐抹角,让你肺解.

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template