Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在学习PHP,我想问一下参考资料,
我的问题: 当你用 (&) 定义函数和当你用 (&) 调用函数时,参数有什么区别,换句话说,当我把 (&) 放在我调用函数之间的定义时有什么区别/ 带 (&) 的参数,谢谢大家,祝您有美好的一天。
当您想使用函数查找应该将引用绑定到哪个变量时,按引用返回很有用。不要使用按引用返回来提高性能。引擎会自行自动优化。仅在您有正当的技术理由时才返回参考资料。要返回引用,请使用以下语法:
来自 PHP 手册Returning References