Advertisement
I_GRIN_I

Untitled

Sep 13th, 2019
148
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.23 KB | None | 0 0
  1. $file='filename.txt';
  2. $filearray=file($file);
  3. $first = $filearray[0];
  4. if(is_array($filearray))
  5. {
  6.     $f=fopen($file,'w');
  7.     for($i=1;$i<sizeof($filearray);$i++)
  8.     {
  9.         fwrite($f,$filearray[$i]);
  10.     }
  11.     fclose($f);
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement