"=&"是什么意思?和“& =" PHP中的运算符是什么意思? [英] What do the "=&" and "&=" operators in PHP mean?

查看:94
本文介绍了"=&"是什么意思?和“& =" PHP中的运算符是什么意思?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

"=&"做什么? /& ="运算符在PHP中是什么意思?在哪里可以阅读有关它们的信息?

What do "=&" / "&=" operators in PHP mean? Where can I read information about them?

搜索Google没有帮助.

Searching Google doesn't help.

推荐答案

$a &= $b$a = $a & $b的缩写,它是

$a &= $b is short for $a = $a & $b which is the bitwise-and operator.

$a =& $b将$ a分配为对$ b的引用.

$a =& $b assigns $a as a reference to $b.

这篇关于"=&"是什么意思?和“& =" PHP中的运算符是什么意思?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆