嗨,所以今天我的问题是我想在我的网站上找到它,所以当它每周都会发送文本文件中的文字时会回显到网站,这就是文本文件的样子:
第1周
第2周
第3周
它继续前进。 所以基本上我试图这样做,例如第一周,它将在下周抓住第一行,它将获取第二行,所有行都存储在一个文本文件中。注意:我试图将此直接添加到我的HTML文件中的HTML代码! 这是我的代码:
<?php
error_reporting(-1);
ini_set('display_errors', 'On');
$text = file_get_contents("lines.txt");
$text = trim($text); //This removes blank lines so that your
//explode doesn't get any empty values at the start or the end.
$array = explode(PHP_EOL, $text);
$lineNumber = count($array);
echo "<p>{$array[0]}</p>";
?>
谢谢!