我有一个非常简单的陈述,检查一个值是否小于另一个,但它不起作用,任何人都可以快速检查它?看到我对此完全失明。
$balance = $wallet->balance(); //3000
$loan = $wallet->loan(); // 5000
if (!$balance < $loan) { //Should be pretty straight forward...
$wallet->updateBalance(Session::get('user'),$balance - 1000);
$wallet->updateLoan(Session::get('user'),$loan - 1000);
Redirect::to('bank.php');
} else {
Redirect::to('bank.php');
}
当我运行此代码时,无论$ balance是否更少,它都会删除1000。如果我删除感叹号,它会立即重定向,就像它应该的那样。
我真的不明白我做错了什么?
这是完整的脚本:
<?php
require_once 'core/init.php';
if (Input::exists('get')) {
if (Input::get('borrow')) {
$wallet = new Wallet;
if ($wallet->get(Session::get('user'))) {
$balance = $wallet->balance();
$loan = $wallet->loan();
$wallet->updateBalance(Session::get('user'),$balance + 1000);
$wallet->updateLoan(Session::get('user'),$loan + 1000);
Redirect::to('bank.php');
}
} else if (Input::get('repay')) {
$wallet = new Wallet;
if ($wallet->get(Session::get('user'))) {
$balance = $wallet->balance();
$loan = $wallet->loan();
if ($balance < $loan) {
$wallet->updateBalance(Session::get('user'),$balance - 1000);
$wallet->updateLoan(Session::get('user'),$loan - 1000);
Redirect::to('bank.php');
} else {
Redirect::to('bank.php');
}
}
} else {
Redirect::to('bank.php');
}
} else {
Redirect::to('bank.php');
}
所有重定向都是暂时的。非常感谢帮助
答案 0 :(得分:3)
我认为问题在于如何在if条件下应用运算符。而不是if (!$balance < $loan)
,请尝试if (!($balance < $loan))
或if ($balance >= $loan)
问题部分是因为PHP在内部表示类型,部分原因是运算符优先级。首先应用否定运算符。因为bools在PHP中由整数表示,所以此表达式的结果为FALSE
,相当于0
。