沃梦达 / 编程问答 / php问题 / 正文

布尔值切换/反转

Boolean value switch/invert(布尔值切换/反转)

本文介绍了布尔值切换/反转的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

PHP中是否有切换/反转boolean值的功能?

Is there a function for switching/inverting boolean value in PHP?

喜欢...的快捷方式:

Like... a shortcut for:

if($boolean === true){
    $boolean = false;
}else{
    $boolean = true;
}

推荐答案

是的:

$boolean = !$boolean;

如果不是布尔值,可以使用三元构造:

if it's not a boolean value, you can use the ternary construction:

$int = ($some_condition ? 1 : 2); // if $some_condition is true, set 1
                                  // otherwise set 2

这篇关于布尔值切换/反转的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本文标题为:布尔值切换/反转

基础教程推荐