PHP和CSV格式重复

时间:2016-07-27 08:44:52

标签: php html csv

所以我想从我的CSV文件中输出一个文档的标题和一些文本!...

但是我一直在获得标题/ $ line_of_text [0]的格式:

我希望那些未加工的文本仍然在文本/ $ line_of_text [3]周围嵌套应该是!

<?PHP
    $file_handle = fopen("test.csv", "r");
    while (!feof($file_handle) ) {
        $line_of_text = fgetcsv($file_handle, 1024);
        print "<h2>" . $line_of_text[0] . "</h2></div>\n" . $line_of_text[3] . "<br>";
    }
    fclose($file_handle);
?>

所以这就是我想要输出的方式:

<h2>Title</h2></div>
The main text
<br>

但这就是我得到的:

<h2>Title</h2></div>
<br><h2>The main text</h2></div>
<br>

所以显然我得到了一个我不理解的循环!。

我找到此代码的链接:http://www.homeandlearn.co.uk/php/php10p6.html

0 个答案:

没有答案