gpt4 book ai didi

php 变量 = 变量 1 ||变量2

转载 作者:行者123 更新时间:2023-12-04 20:44:20 29 4
gpt4 key购买 nike

这可能吗?

php $variable = $variable1 || $variable2?

如果 $variable1 为空则使用 $variable2

是否存在类似的东西?

最佳答案

PHP 5.3+:

$variable = $variable1 ?: $variable2;

PHP 5.2-:

$variable = $variable1 ? $variable1 : $variable2;

关于php 变量 = 变量 1 ||变量2,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11954422/

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