Heim >Backend-Entwicklung >PHP-Tutorial >读取文件内容_PHP

读取文件内容_PHP

WBOY
WBOYOriginal
2016-06-01 12:32:10887Durchsuche



读取文件内容



 // 打开文件同时打印文件的每一个字符
 if($myFile = fopen("data.txt", "r"))
 {
 while(!feof($myFile))
 {
  $myCharacter = fgetc($myFile);
  print($myCharacter);
 }
 fclose($myFile);
 } 
?>
print("
");?>

 // 打开文件同时打印文件的每一行
 if($myFile = fopen("data.txt", "r"))
 {
  while(!feof($myFile))
  {
   $myLine = fgets($myFile, 255);
   print($myLine);
  }
 fclose($myFile);
 } 
?>
print("
");?>

 /* 打开文件同时打印文件的每一行,
 同时去掉取回字符串中的 HTML 语言
 */
 if($myFile = fopen("data.txt", "r"))
 {
  while(!feof($myFile))
  {
   $myLine = fgetss($myFile, 255);
   print($myLine);
  }
  fclose($myFile);
 } 
?>




Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn
Vorheriger Artikel:常用字符串函数(二)_PHPNächster Artikel:PHP判断文件是否存在_PHP