PHP & Virtuemart:如果数字大于 1,则更改数字的颜色

PHP & Virtuemart: change color of a number if this number is bigger than 1

virtumart 的代码是:

<th align="center" bgcolor="#EEEEEE" style="border: 1px solid #CCCCCC;"><?php echo JText::_('COM_VIRTUEMART_ORDER_PRINT_QTY') ?></th>

我需要的是: 当COM_VIRTUEMART_ORDER_PRINT_QTY大于1时,字体颜色为其他颜色,for example red(我稍后会做的格式,现在我只想要"if"代码)。

谢谢

请尝试

<?php
    $quantity = JText::_('COM_VIRTUEMART_ORDER_PRINT_QTY');
    if($quantity > 1){
        echo '<th align="center" bgcolor="#EEEEEE" style="border: 1px solid #CCCCC; color:#FF0000">'.$quantity.'</th>';
    }else{
        echo '<th align="center" bgcolor="#EEEEEE" style="border: 1px solid #CCCCCC;">'.$quantity.'</th>';
    }
?>