Home >php教程 >php手册 >PHP 位运算你知道多少?

PHP 位运算你知道多少?

WBOY
WBOYOriginal
2016-06-07 11:42:471382browse

*
PHP 和其他语言一样,支持常用的位运算操作(与、或、非、异或)。而在真正的开发中,大家对位运算的应用有多少呢?
合理的使用位运算,既可以让代码变得简洁优美,又可以提高效率。

比如:交换变量$a和$b的值,一会想到怎么做呢?$c = $a;<br> $a = $b;<br> $b = $c;?,当然这也是一种办法。
而用位运算的话:$a ^= $b;<br> $b ^= $a;<br> $a ^= $b;是不是更高效呢? :)
当然,实际的开发中位运算还有一些常用的方式:
http://www.xuansky.cn/?p=41

AD:真正免费,域名+虚机+企业邮箱=0元

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn