你能帮助我解决这个错误吗?
<?php echo'<td><strong>'.str_pad($i+1, 2, "0", STR_PAD_LEFT).'</strong>x de <strong>R$ '.number_format($valorParcela,2,',','.'). ' sem juros</strong></td>' .number_format() ?> </option>
答案 0 :(得分:0)
你的字符串末尾有一个额外的number_format
来电。删除它:
<?php echo'<td><strong>'
. str_pad($i+1, 2, "0", STR_PAD_LEFT)
. '</strong>x de <strong>R$ '
. number_format($valorParcela,2,',','.')
. ' sem juros</strong></td>' ?>
</option>
答案 1 :(得分:0)
删除额外的number_format并在php结束标记之前添加半冒号?&gt;:
<?php
echo'<td><strong>'
.str_pad($i+1, 2, "0", STR_PAD_LEFT)
.'</strong>x de <strong>R$ '
.number_format($valorParcela,2,',','.')
. ' sem juros</strong></td>';
?>
</option>