所以,我一直在努力学习PHP。我已经完成了一项任务,我应该在其中列出具有价格的产品列表,并且根据它是什么日期,它应该给你一个折扣。这到目前为止工作。但是,我试图做的一件事就是不直接在代码中回显结果;我想创建一个获取必要参数(Taste,Price,Amount)并返回格式化字符串的函数。尽管尝试了很多,但我还没能做到这一点。这是我的代码。这是我第一次使用Stack Overflow,所以请原谅我,如果我没有正确输入它。
<?php
$donuts = array(
array("Strawberry", 10),
array("Chocolate", 20),
array("Vanilla", 30)
);
$weekday = date('N');
$week = date('W');
$hour = date('G');
if ($weekday == 4) {
echo "Hi";
}
?>
<?php
$today = date("l F j, Y");
if ($weekday % 2 == 1 && $week % 2 == 1 && $hour >= 14 && $hour < 17){
echo "Congratulations! You get a 5% discount, and your wares will be delivered tomorrow!";
}
PRINT "$today";
?>
<table border="1">
<tr>
<th>Taste</th>
<th>Price</th>
<th>Discount</th>
<th>Amount</th>
</tr>
<?php
for($i = 0; $i<count($donuts); $i++) {
echo "<tr>";
echo "<td>".$donuts[$i][0]."</td>";
if( $weekday == 1){
echo"<td>".getPricePercent($donuts[$i][1], .5)." kr</td>";
}
if( $weekday == 3){
echo"<td>".getPricePercent($donuts[$i][1], 1.1)." kr</td>";
}
$pris = $donuts[$i][1];
if ($weekday == 5 && $pris > 20){
echo"<td>".($pris-1)." kr</td>";
}
else { echo"<td>".getPrice($donuts[$i][1], .9)." kr</td>";}
?>
<td><input type="number" name="donuts-<?php echo $i; ?>" /></td>
<?php
echo "</tr>";
}
?>
</table>
<?php
function getPrice($price, $percent) {
return ($price);
}
function getPricePercent($price, $percent){
return ($price * $percent);
}
?>
答案 0 :(得分:0)
我完全不了解您要在price
和discount
部分中打印的内容。您可以添加getDiscount函数以使代码清洁。
function getDiscount($weekday, $price){
if($weekday == 1){
return .5;
} else if($weekday == 3){
return 1.1;
} else if($weekday == 5 && $price > 20){
return $price-1;
}
}
然后你可以这样做,
<table border="1">
<tr>
<th>Taste</th>
<th>Price</th>
<th>Discount</th>
<th>Amount</th>
</tr>
<?php
for($i = 0; $i<count($donuts); $i++) {
echo "<tr>";
echo "<td>".$donuts[$i][0]."</td>";
echo"<td>".getPricePercent($donuts[$i][1], getDiscount($weekday,$donuts[$i][1]))." kr</td>";
echo"<td>".getPrice($donuts[$i][1], getDiscount($weekday,$donuts[$i][1]))." kr</td>";
?>
<td><input type="number" name="donuts-<?php echo $i; ?>" /></td>
<?php
echo "</tr>";
}
?>
</table>
不过,我不明白,您是否尝试根据金额动态更新价格值?
答案 1 :(得分:-2)
如果您想要concat
字符串,可以使用以下内容实现:
echo "Price" . $price . "Amount" . $amount;