gpt4 book ai didi

php - PHP循环抛出通知,这似乎是一个持续的错误

转载 作者:行者123 更新时间:2023-12-03 07:52:33 25 4
gpt4 key购买 nike

$features[] = array("Feature 1", "Feature 2", "Feature 3", "Feature 4")

for ($i=0; $i <4 ; $i++) {
echo '<li class="list-group-item text-centre">'. $features[i] . '</li>';

我无法解决该通知:
Notice: Use of undefined constant i - assumed 'i' in /home3/..../public_html/html......com/all/stripe/index.php on line 48

最佳答案

这是$features[]的原因。
采用:

$features = array("Feature 1", "Feature 2", "Feature 3", "Feature 4")
$features[]表示您要将 =之后的值传递到 $features数组的新索引中,即 $features[0][your_array]

echo '<li class="list-group-item text-centre">'。 $ features [ $ i ]。 '</li>';

替换为
echo '<li class="list-group-item text-centre">'.  $features[$i] . '</li>';

关于php - PHP循环抛出通知,这似乎是一个持续的错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59984311/

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