gpt4 book ai didi

php - 用 & 符号启动 PHP 函数是什么意思?

转载 作者:IT老高 更新时间:2023-10-28 11:46:56 24 4
gpt4 key购买 nike

我正在使用包含以下代码的 Facebook 库:

class FacebookRestClient {
...
public function &users_hasAppPermission($ext_perm, $uid=null) {
return $this->call_method('facebook.users.hasAppPermission',
array('ext_perm' => $ext_perm, 'uid' => $uid));
}
...
}

函数定义开头的 & 是什么意思,我该如何使用这样的库(在一个简单的例子中)

最佳答案

函数名前的和号表示函数将返回对变量的引用而不是值。

Returning by reference is useful when you want to use a function to find to which variable a reference should be bound. Do not use return-by-reference to increase performance. The engine will automatically optimize this on its own. Only return references when you have a valid technical reason to do so.

Returning References .

关于php - 用 & 符号启动 PHP 函数是什么意思?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1676897/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com