gpt4 book ai didi

php - 这段php代码中的 '&'是什么意思

转载 作者:行者123 更新时间:2023-12-04 21:17:43 25 4
gpt4 key购买 nike

我使用 word press,并且我尝试学习它,但是看到了我不明白的代码

$post = &get_post($id);

我在 get_post 之前看到“&”,“&”是什么意思?

谢谢

最佳答案

此处您将获得对 get_post($id) 结果的引用。

特别是您正在使用“通过引用返回”技术。

Returning References :

Returning by reference is useful when you want to use a function to find to which variable a reference should be bound.


The same syntax can be used with functions that return references, and with the new operator (since PHP 4.0.4 and before PHP 5.0.0):

  <?php
$foo =& find_var($bar);
?>

Since PHP 5, new returns a reference automatically, so using =& in this context is deprecated and produces an E_STRICT message.

因此,如果您使用的是 >= PHP 5,那么使用这种表示法并不是一个好主意。


资源:

关于php - 这段php代码中的 '&'是什么意思,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3775801/

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