我正在尝试读取文本文件的内容,但不知道如何告诉 PHP 在到达末尾时中断。
当前代码是:
<?php
$file = "campaign1_20_db.txt";
$content = file_get_contents($file);
$string = explode("\n",$content);
$index = 0;
while ($index <= 100):
$index = $index + 1;
endwhile;
?>
如何将 100 替换为取决于 PHP 到达文本文件末尾的内容?