我试图这样做,所以每周我的PHP代码都会将文本存储在预先制作的文本文件中,并且每周都会回显一个新行。我尝试过使用date()
,但事实并非如此。
以下是代码:
<?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>";
?>
以下是lines.txt的格式如下:
- Hello1
- Hello2
- Hello3
醇>
以及
答案 0 :(得分:0)
如果您只需要回显文本文件中的行:
$array = explode(PHP_EOL, $text);
foreach($array as $val){
echo "$val\n";
}
如果您想每周回复一个新行,请在某处跟踪它,例如:
$counter = 0;
if(!file_exists("date.txt")){
file_put_contents("date.txt",date("d"));
}else{
$date = file_get_contents("date.txt");
$dayNow = date("d");
$counter = ($dayNow - $date)/7;
}
$text = file_get_contents("lines.txt");
$text = trim($text);
$array = explode(PHP_EOL, $text);
echo $array[$counter]."\n";
答案 1 :(得分:0)
这是一个解决方案 - 如果我理解你的问题:
<?php
$fname = 'quoteoftheweek.txt';
if (!file_exists($fname)) {
$quote = '???'; // File does not exist
} else {
$lines = file($fname, FILE_IGNORE_NEW_LINES | FILE_SKIP_EMPTY_LINES);
$nweek = (integer)date('W',time()); // Get the week number
$nlines = count($lines); // Get the number of lines
// Calculate the index as week_number modulo number_of_lines
// If number_of_lines < 1 set it to false
$index = ($nlines>0) ? ($nweek % $nlines) - 1 : false;
$quote = ($index!==false) ? $lines[$index] : '???';
}
echo '<p>Quote, week '.$nweek.' : ' . $quote . '</p>';
quoteoftheweek.txt 文件的内容:
本周的报价1 本周的报价2 本周报价3 本周的报价4 本周报价5 本周的报价6
........
结果(2016-02-15):
引用,第7周:第7周的报价
注意: