PHP中如何确保不修改通过引用传递的参数
在 C++ 中,您可以这样做,以确保通过引用传递的参数不会被修改:
void function Foo(const ¶m){}
How can i do the same in PHP?
In C++ you could do like this, to ensure that the parameter you passed by reference is not going to be modified:
void function Foo(const ¶m){}
How can i do the same in PHP?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不,你不能,如果你只想读取它,则创建该变量的副本,但总的来说,如果你不需要引用,则不要使用它们,就像本例中所示的那样。引用不会给你的 php 带来任何性能上的好处。
No you cant, if you want just read it create copy of that variable, but overall if you dont need references dont use them, as it looks in this case. References wont give you any performance benefits on php.