WebEnh

.net7 mvc jquery bootstrap json 学习中 第一次学PHP,正在研究中。自学进行时... ... 我的博客 https://enhweb.github.io/ 不错的皮肤:darkgreentrip,iMetro_HD
  首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

php示例代码之读取文件

Posted on 2016-07-09 13:41  WebEnh  阅读(248)  评论(0编辑  收藏  举报

php读取文件

1
2
3
4
5
6
7
8
$sourceString='';
$fp = @fopen($filename, "r");
 
  while($line = fgets($fp,1024))
   {
     $sourceString .= $line;
   }
 fclose($fp);