1 Star 1 Fork 0

水木/PHP_Manual_Examples

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
ljysf.php 781 Bytes
一键复制 编辑 原始数据 按行查看 历史
水木 提交于 2015-04-15 22:46 . 更新博客网址。
<?php
/***************
*Author: 水木
*Date: 2012-12-25
*Description:
*PHP函数应用编程练习
*Blog: www.4u4v.net
**********************/
// 下面的 foo() 不会被调用,因为它们被运算符“短路”了。
$a = (false && foo());
$b = (true || foo());
$c = (false and foo());
$d = (true or foo());
// "||" 的优先级比 "or" 高
$e = false || true; // $e 被赋值为 (false || true),结果为 true
$f = false or true; // $f 被赋值为 false [Altair注:"=" 的优先级比 "or" 高]
var_dump($e, $f);
// "&&" 的优先级比 "and" 高
$g = true && false; // $g 被赋值为 (true && false),结果为 false
$h = true and false; // $h 被赋值为 true [Altair注:"=" 的优先级比 "and" 高]
var_dump($g, $h);
?>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
PHP
1
https://gitee.com/4u4v/php_manual_examples.git
[email protected]:4u4v/php_manual_examples.git
4u4v
php_manual_examples
PHP_Manual_Examples
master

搜索帮助