gpt4 book ai didi

php - 将正负存储在变量PHP中

转载 作者:行者123 更新时间:2023-12-05 00:27:44 26 4
gpt4 key购买 nike

我怎么解决这个问题:

if ($variable == 1) {
$math = "-";
} else {
$math = "+";
}

$numberOne = 10;
$numberTwo = 10;

$result = $numberOne $math $numberTwo;


这行不通,有什么办法解决这个问题?

最佳答案

这将为您的示例工作。减法与加负数相同。这比使用eval的替代方法更加安全。

if ($variable == 1) {
$modifier = -1;
} else {
$modifier = 1;
}

$numberOne = 10;
$numberTwo = 10;

$result = $numberOne + ($numberTwo * $modifier);

关于php - 将正负存储在变量PHP中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6768468/

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