gpt4 book ai didi

php - 使用 "variable"包装类输出 HTML

转载 作者:行者123 更新时间:2023-11-28 17:36:34 24 4
gpt4 key购买 nike

我需要有关遍历数组、显示格式化 HTML 显示以及 CSS 样式的帮助。但主要问题是:我不知道如何调整正确的包装方式和选择包装类的名称。因为我需要循环数组以找到正确的类名。

换句话说:我需要计算“今天”和过期日期之间的时间量,如果离过期时间太近,我想将包装类更改为“nearExpire”,否则不要更改它.但是由于计算是在包装器回显之后进行的,所以我不能调用尚未声明的变量。所以我尝试附加循环值然后包装它,但它不起作用,因为循环不断重复值。

抱歉,如果我不清楚,英语不是我的母语。这是我的意思的通用代码(如果我不清楚,请告诉我,我稍后会尝试更好地解释):

代码的通用数组

// A generic array adquired from a database
$myArray = [
[0] => [
['id'] => 15
['anotherTableID'] => 4447
['description'] => 'GenericDescription'
['created'] => 2000-01-01 12:00:00
['expire'] => 2005-01-31 12:00:00
],
[1] => [
['id'] => 35
['anotherTableID'] => 327
['description'] => 'AnotherGenericDescription'
['created'] => 2000-01-01 12:00:00
['expire'] => 2000-01-31 12:00:00
],
];

代码

echo "<div class='mainWrapper'>";
foreach ( $myArray as $cardArray ) {
echo "<div class='cardWrapper", $myHTMLClass", '>"; // <-- Here I need to echo the class
foreach ($cardArray as $cardKey => $cardData) {
switch ( $cardKey ) {
case 'expire':
if ( calculationOfExpire() == "3 Days Left" ) {
$myHTMLClass = " nearExpire";
}
echo $cardData;
break;
default:
echo $cardData;
break;
}
}
echo "</div>";
}
echo "</div>";

这样做的目的是并排显示所有“CardArrays”,但每个都有自己独特的“可能过期”类。

最佳答案

我会做这样的事情:

...
foreach ( $myArray as $index => $cardArray ) {
$myHTMLClass = '';
if (calculationOfExpire($cardArray[$index]['expire']) == "3 Days Left") {
$myHTMLClass = 'nearExpire';
}
echo "<div class='cardWrapper" . $myHTMLClass . "'>"; // <-- Here I need to echo the class
...

或者对于 1-liner:

...
foreach ( $myArray as $index => $cardArray ) {
echo "<div class='cardWrapper" . ((calculationOfExpire($cardArray[$index]['expire']) == "3 Days Left") ? ' nearExpire' :'' ) ."'>"; // <-- Here I need to echo the class
....

这只是使用当前卡的索引来获取expire索引,您可以根据该索引进行计算。

关于php - 使用 "variable"包装类输出 HTML,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25004643/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com