萬盛學電腦網

 萬盛學電腦網 >> 網絡編程 >> php編程 >> php 讀取文件內容[file_get_contents]

php 讀取文件內容[file_get_contents]

下面是一個簡單的函數,我們是用php file_get_contents函數來讀取文件mail_room.html的內容哦,好了費話不說多了我們來看看吧。


 function GetContent($type){
  if( $type )
  {
   if(file_exists('./mail_room.html') )
   {
    $content = file_get_contents( './mail_room.html');
   }
   else
   {
    ShowMsg('file can' read fail ');
   }
  }
  else
  {
   if( file_exists( './mail_person.html') )
   {
    $content = file_get_contents( './mail_person.html');
   }
   else
   {
    ShowMsg('person file read fail!');
   }
   
  }
  return $content;
 }

本站原創轉注明:www.111cn.net/phper/php.html

copyright © 萬盛學電腦網 all rights reserved