我需要一些小问题的帮助。但我不知道如何处理它。
有一个名为
的功能<td><?=$currentCourse['price']?></td>
我需要这个功能,无论$ currentCourse ['price']是多少20%的折扣。
答案 0 :(得分:3)
<td><?=$currentCourse['price']*0.8?></td>
答案 1 :(得分:1)
要创建功能,您需要使用()
而不是[]
。 []
用于获取数组的数组索引!
对于您的功能,您可以这样做:
<?php
function currentCourse($price)
{
return ($price * 0.8);
}
?>
或者如果你想在没有功能的情况下使用相同的东西,你可以这样做:
<td><?=($currentCourse['price'] * 0.8)?></td>
但我建议你不要使用短标签,而是使用它:
<td><?php echo ($currentCourse['price'] * 0.8); ?></td>
因为默认情况下,short_tags
为Off
。
<?php
echo round(3.4); // 3
echo round(3.5); // 4
echo round(3.6); // 4
echo round(3.6, 0); // 4
echo round(1.95583, 2); // 1.96
echo round(1241757, -3); // 1242000
echo round(5.045, 2); // 5.05
echo round(5.055, 2); // 5.06
?>
答案 2 :(得分:1)
<?php
function getPercentOff($price, $percent = 20)
{
return $price * (1 - ($percent/100));
}
?>
对于您所要求的内容,这将是一个相对通用的解决方案。
答案 3 :(得分:-1)
首先,不推荐使用短标记操作数<?=
,不要使用
<td><?php echo getPrice($currentCourse['price']);?></td>
function getPrice($price){
return $price * 0.8;
}