gpt4 book ai didi

PHP - 切换状态

转载 作者:可可西里 更新时间:2023-11-01 12:23:57 25 4
gpt4 key购买 nike

问题很简单,但我正在寻找创造性的解决方案。我们经常遇到数组,对象具有可以切换的属性(它可以是事件的或非事件的,1 或 0)。

我想要的是将 0 转换为 1,以及将 1 转换为 0 的创造性解决方案(函数)。

一些例子:

// First
if ($state == 1)
{
$state = 0;
}
else
{
$state = 1;
}

// Second
$states = array(1, 0);
$state = $states[$state];

// Third
$state = ($state == 1) ? 0 : 1;

是否有另一种单行解决方案?谢谢,祝您头脑 Storm 愉快。

最佳答案

你可以这样做:

$state = 1 - $state;

关于PHP - 切换状态,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10548321/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com