免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 4038 | 回复: 3
打印 上一主题 下一主题

一个PHP异或操作的疑问 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2011-09-29 18:03 |只看该作者 |倒序浏览
今天测试异或操作:

  1. $ammonia = 1;
  2. $bleach = 1;
  3. $ingredient = $ammonia xor $bleach;
  4. echo $ingredient;
复制代码



换不同的值,得到的结果如下:

// 1 xor 0 = 1
// 0 xor 1 = 0
// 1 xor 1 = 1
// 0 xor 0 = 0

书上的说明是:
In the example snippet, if either $ammonia or $bleach is true, $ingredient will also be
set to true. But if both are true or both are false, $ingredient will be set to false.

不知道是不是我理解错?
我觉得应该是:
1 xor 1 = 0
0 xor 0 = 0
1 xor 0 = 1
0 xor 1 = 1
才对……

论坛徽章:
1
2015年迎新春徽章
日期:2015-03-04 09:55:28
2 [报告]
发表于 2011-09-29 18:34 |只看该作者
本帖最后由 xinglu1983 于 2011-09-29 18:35 编辑

回复 1# 角落的猫


    你关于xor的理解没错,只是xor运算符优先级在=后面,改成这样看看:
  1. $ammonia = 1;
  2. $bleach = 1;
  3. $ingredient = ($ammonia xor $bleach);
  4. var_dump($ingredient);
复制代码

论坛徽章:
0
3 [报告]
发表于 2011-09-29 18:40 |只看该作者
回复 2# xinglu1983


    原来是这样……

    我懂啦~谢谢你

论坛徽章:
1
2015年迎新春徽章
日期:2015-03-04 09:55:28
4 [报告]
发表于 2011-10-10 18:52 |只看该作者
回复  xinglu1983


    xor   手册没有 ?
sunicc_ 发表于 2011-10-10 11:41



    http://www.php.net/manual/zh/language.operators.bitwise.php
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP