所以,我一直在努力学习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);
}
?>
我不完全明白你想在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>
我还是不明白,你是在尝试根据数量动态更新价格值吗?
如果您想要concat
字符串,您可以使用以下命令来实现:
echo "Price" . $price . "Amount" . $amount;