php if语句只返回1st“if”

时间:2013-11-15 01:31:57

标签: php if-statement

我的php在某处的if语句中一定是错误的。由于某种原因,它只会在数组中返回“买入”作为历史记录类型,即使原始数据显示其他情况也是如此。我做错了什么?

$history = $api->get_wallet_history('USD');

$i = 0;
while ($i <= 9):
$history_date = $history[result][$i][Date];
//$history_date->format("m-d-y");
//print_r($history_date);

$history_type = $history[result][$i][Type];
if($history_type = 'spent'):
    $history_type = 'Buy';
    elseif($history_type = 'earned'):
        $history_type = 'Sold';
    elseif ($history_type = 'fee'):
        $history_type = 'Fee';
    else:
        $history_type = 'Error';
endif;
//print_r($history_type);

$history_usd = $history[result][$i][Balance][value];
$history_btc = $history[result][$i][Trade][Amount][value];
$history_amt = $history[result][$i][Value][value];
echo '<tr><td>'.$history_type.'</td><td>'.$history_amt.'</td><td>'.$history_usd.'</td><td>'.$history_btc.'</td><td>'.$history_date.'</td></tr>';
$i++;
endwhile;

2 个答案:

答案 0 :(得分:2)

$history_type = 'spent'必须为$history_type == 'spent'

Assigments始终返回分配值。 $history_type = 'spent'返回'花费',其解释为true

您的if必须看起来

if ($history_type == 'spent'):
    $history_type = 'Buy';
elseif ($history_type == 'earned'):
    $history_type = 'Sold';
elseif ($history_type == 'fee'):
    $history_type = 'Fee';
else:
    $history_type = 'Error';
endif;

Assignment OperatorsComparison Operators

为了避免出现这种错误,您可以更改值和变量的位置。

'spent' = $history_type - 永远不会奏效 'spent' == $history_type - 按预期工作

答案 1 :(得分:0)

您在这里分配而不是比较:

 if ($history_type = 'spent'):

这就是为什么它总是具有'花费'的价值