Skip to content

没脚的小鸟

双鱼男,过分热心的好人,不自觉中、英、德语及各种地方言发声。

没脚的小鸟

没脚的小鸟

双鱼男,过分热心的好人,不自觉中、英、德语及各种地方言发声。

  • Archives
  • Tag Cloud
  • Twitter
  • Facebook
  • Google+
  • Linkedin
  • Instagram
  • Blogger
  • Wordpress
  • Tumblr
  • QQ
  • Weibo
kyun kyun kyun kyun xiaokyun xiaokyun

Tag: file_put_contents

PHP读取文件的第1行后删除此行数据

<?php
header(‘Content-Type: text/html; charset=utf-8’);

$fn = "1.txt";
$f= fopen($fn, "r");
$line = fgets($f);
ob_start();
fpassthru($f);
fclose($f);
file_put_contents($fn, ob_get_clean() );

echo $line;

?>

Posted on 2013-06-19Tags fclose, fgets, file_put_contents, fopen, fpassthru, ob_start, PHP
Proudly powered by WordPress