gpt4 book ai didi

php - 读取和回显.txt文件在php中给出了 undefined offset 错误

转载 作者:行者123 更新时间:2023-12-03 08:55:49 30 4
gpt4 key购买 nike

首先,我要说的是,我在此站点中发现了相同类型的问题。我遵循了一些解决方案,但不适用于我的情况。

我有一个.txt文件,需要按特定顺序回显。这是.txt文件。

Question1|opt1,opt2,opt3;Question2|opt1,opt2,opt3;Question3|opt1,opt2,opt3;

这是代码
$open=fopen("mydata.txt","r+");

$blocks = explode(';', file_get_contents('mydata.txt'));

foreach($blocks as $block)
{

list($question, $opts) = explode('|', $block); //LINE 'X'
$opt = explode(',', $opts);
$eco=$question."</br>".'<input type=radio>'.$opt[0].'<input type=radio>'.$opt[1].'<input type=radio>'.$opt[2]; //LINE 'Y'
echo $eco;

}

fclose($open);

给我3个LINE X(1个通知)和LINE Y(2个通知)的未定义偏移量通知。并且,给了我3个空白值的单选按钮。

在这个问题上需要帮助。

最佳答案

我想出了解决这个问题的方法。

在这种情况下,使用多维数组是有效的。我所做的是将内容作为数组插入并从中检索内容。

现在正在工作。

关于php - 读取和回显.txt文件在php中给出了 undefined offset 错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26189330/

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