<?php
$file = fopen("Minot.txt", "r") or exit("Unable to open file!");
//Output a line of the file until the end is reached
//feof() check if file read end EOF
while(!feof($file))
{
	//fgets() Read row by row
	echo fgetc($file). "<br />";
}
fclose($file);
?>

  

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-12-26
猜你喜欢
  • 2021-10-05
  • 2021-08-22
  • 2021-08-04
  • 2022-12-23
  • 2021-08-27
  • 2022-01-31
  • 2022-12-23
相关资源
相似解决方案