我想比較兩個值,但是當我這樣做似乎並不奏效。我知道這些價值是什麼,所以它應該是真實的。更糟糕的是,如果我將其中一個變量取出並將其中的數字起作用。比較Opeartor看起來不起作用
$data = simplexml_load_file('xml/heroes/hero.xml')
or die("Error: Cannot create object");
$hme = $data->hes->he->maxen;
$hce = $data->hes->he->curen;
$hac = $data->hes->he->lastac;
echo $hce . ' should not be greater than ' . $hme;
if($hce > $hme){
echo 'should be working';
}
輸出:
773應不大於20
您需要顯示設置'$ hce'和'$ hme'的代碼。 – Polynomial 2013-04-23 16:03:48
'$ hce'和'$ hme'是什麼?他們可以是字符串嗎? – j08691 2013-04-23 16:04:01
請向我們展示'var_export($ hce,true)'和'var_export($ hme,true)'的輸出。 – cdhowie 2013-04-23 16:04:56