gpt4 book ai didi

php - 自动为每一行同一表行内的变量生成索引号?

转载 作者:行者123 更新时间:2023-11-29 11:46:11 24 4
gpt4 key购买 nike

我有许多表行,我根据计划从数据库中提取的项目数来选择这些行。

我不会自动渲染行,因为在其中一些行中,我希望能够自由地包含一些没有特定统一的静态元素(请参阅ABCXYZ 以代码为例)。

对于每个项目(人),我还在 PHP 文件本身中手动设置其特定行的一些其他相关值,例如 $company[i]

PHP:

<?php
// Choose Relevant people, and turn them into an array
$item_array = array(
'Mike',
'Bill',
'Joe'
);

//implode items, turn into string
$item_implode = join("','", $item_array);

//declare an overall array for result
$person = array();

$personList = array();
$result = $mysqli->query("SELECT available from people_table where available IN ('$item_implode') ORDER BY FIELD (available, '$item_implode');");

if ($result->num_rows > 0) {
$x = 1;
// output data of each row
while($row = $result->fetch_assoc()) {
$person[$x]["available"] = $row['available'];

$x = $x + 1;
}
} else {
echo "0 results";
}

// Manually Set Values:

$hide1=false;
$comment1="hello";
$company1="apple";

$hide2=false;
$comment2="something";
$company2="microsoft";

// And so on...

?>

由于我为每一行添加了另一个代码块,因此我必须根据 HTML 代码中的行顺序替换每个 block 中的索引号,这意味着在每个 block 中,我应该 CTRL-F 数字,并替换为以下数字,感觉效率不太高:

HTML:

// First Row

<?php if ($person[1]["available"]=="yes") { ?>
<tr<?= !$hide1 ? "" : " class=\"hidden\""; ?>>
<td>ABC</td>
<td><?= !$comment1 ? "" : "<div class=\"cell\">" . $comment1 . "</div>"; ?></td>
<td><?= some_function( $company1 ) ?></td>
</tr>
<?php } else { } ?>

// Second Row

<?php if ($person[2]["available"]=="yes") { ?>
<tr<?= !$hide2 ? "" : " class=\"hidden\""; ?>>
<td>XYZ</td>
<td><?= !$comment2 ? "" : "<div class=\"cell\">" . $comment2 . "</div>"; ?></td>
<td><?= some_function( $company2 ) ?></td>
</tr>
<?php } else { } ?>

// and so on

有没有办法让每个变量末尾出现的索引号,根据HTML中的行号自动生成?

编辑:

感谢 Andrew Cheong 的回答,我取得了进步:

  1. 我将所有以固定数字结尾的变量转换为 [i] 形式。
  2. 我向每个表行添加了一个 while 循环(代码开始后一行,代码结束前另一行),这允许我仅指示一次索引号:

所以它工作正常,但我认为它还不够完美,我还能如何修改它?

新代码:

// First Row

<?php if ($person[1]["available"]=="yes") { ?>

<?php $i = 1; while ($i > 0) { ?> /// New Line #1

<tr<?= !$hide[$i] ? "" : " class=\"hidden\""; ?>>
<td>ABC</td>
<td><?= !$comment[$i] ? "" : "<div class=\"cell\">" . $comment[$i] . "</div>"; ?></td>
<td><?= some_function( $company[$i] ) ?></td>
</tr>

<?php break; } ?> /// New Line #2

<?php } else { } ?>

// Second Row

<?php if ($person[2]["available"]=="yes") { ?>

<?php $i = 2; while ($i > 0) { ?> /// New Line #1

<tr<?= !$hide[$i] ? "" : " class=\"hidden\""; ?>>
<td>XYZ</td>
<td><?= !$comment[$i] ? "" : "<div class=\"cell\">" . $comment[$i] . "</div>"; ?></td>
<td><?= some_function( $company[$i] ) ?></td>
</tr>

<?php break; } ?> /// New Line #2

<?php } else { } ?>

// and so on

最佳答案

您仍然可以使用实际的数组 -

// Manually Set Values:

$hide[1]=false;
$comment[1]="hello";
$company[1]="apple";

$hide[2]=false;
$comment[2]="something";
$company[2]="microsoft";

如果它们不适用,就不要设置它们,例如

$comment[3]="only a comment";

并在您的 HTML 中,

<?php
if ($person[1]["available"]=="yes") { ?>
<tr<?= !isset($hide[$i]) || !$hide[$i] ? "" : " class=\"hidden\""; ?>>
<td>ABC</td>
<td><?= !isset($comment[$i]) || !$comment[$i] ? "" : "<div class=\"cell\">" . $comment[$i] . "</div>"; ?></td>
<td><?= if (isset($company[$i])) { some_function( $company[$i] ); } ?></td>
</tr>
<?php } else { } ?>

我没有为您完成所有工作,但您可以看到我已经对其进行了修改,因此您现在可以将其放入 $i 上的循环索引中.

  • 如果你不知道有多少$i会有,那么使用while循环并发挥创意,例如 breakisset($hide[$i]) && isset($comment[$i]) && isset($company[$i]) == false .

  • 如果您想完全隐藏评论栏,请拉出 isset<td>这样你甚至不会创建 <td>在这种情况下。

  • 我的包装方式 some_function...if( ... )可能不起作用,因为您使用的是短 echo 形式 <?= =>但我会让你弄清楚这一点。

<小时/>

回复:新代码/注释

让我拿走你的新代码并稍微修改一下。我还将修复格式,以便缩进也匹配:

<?php
$i = 1;
while ($i > 0) {
if ($person[$i]["available"]=="yes") {
?>
<!--
Only add the hidden class if $hide[$i] has been set by someone,
i.e. you, manually, AND it has been set to true.
-->
<tr<?= isset($hide[$i]) && $hide[$i] ? " class=\"hidden\"" : ""; ?>>
<td>ABC</td>
<!--
Same as above, only add the comment div if it has been set, but
instead of what you're doing, I'm going to do what I think you
meant to do: only if there's a non-empty string for a comment.
-->
<td><?= isset($comment[$i]) && $comment[$i] != "" ? "<div class=\"cell\">" . $comment[$i] . "</div>" : ""; ?></td>
<!--
Same thing yet again: only proceed if $company[i] is set and not
an empty string.
-->
<td><?= isset($company[$i]) && $company[$i] != "" ? some_function( $company[$i] ) : "" ?></td>
</tr>
<?php
} // The `else` case is not required.
$i++;
if (!isset($hide[$i]) &&
!isset($comment[$i]) &&
!isset($company[$i]))
{
// Now, this entire thing can be put in a form inside the
// `while`'s condition so that there is no need for this `if`
// statement nor the `break`, but I'm doing it this way to
// make it clearer to you what's going on.
break;
}
}
?>

就是这样。没有其他循环,没有其他 block 。现在让我回答您评论中的问题:

  1. 当然,不,我不是故意要使用 while每行。那是愚蠢的,而且不会为你节省任何工作。我的意思是上面的内容,您只需要一行。

  2. 在我的“不设置”示例中,我的意思是表明 $hide[3]$company[3]没有设置;仅$comment[3] .

  3. 我确信有些人试图告诉您,您的问题不在于您只需要将数字转换为变量。你实际上选择了错误的方法,并且不幸的是,你顽固地坚持了这种方法。我知道那种感觉,“是的,我知道!我知道!但我有一个特殊情况!在我的特殊情况下,我需要这样!”但是经验丰富的程序员知道哪种特殊情况值得采用某些技术,而且很明显,您的特殊情况与您尝试使用的所谓“反射”或“变量”无关。您缺少的是一些简单的isset() (并且可能还有 10 种其他方法可以做到这一点,无需反射(reflection))。 isset()检查您是否设置了变量,手动非手动等等。这意味着您现在可以为每个 <tr> 创建一个循环并使用isset()在每一行各自的变量上查看是否要对其执行任何操作。如果您复制粘贴此代码来创建一个新的自定义一次性页面,其中 $hide$comment$company不再相关,那么你猜怎么着:没有任何问题,因为 isset() s 只会忽略它们。我希望这能让事情变得更清晰,但如果没有,也不用担心,当你继续编程时,你会习惯各种模式,知识会自动出现。

关于php - 自动为每一行同一表行内的变量生成索引号?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34907553/

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