Skip to content

Instantly share code, notes, and snippets.

@asathoor
Created May 22, 2015 14:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save asathoor/75a2df2a7bc61b693f13 to your computer and use it in GitHub Desktop.
Save asathoor/75a2df2a7bc61b693f13 to your computer and use it in GitHub Desktop.
Write to the beginning of a textfile in php
<?php
// add to top op a file
$file_data = "Lorem ipsum sit dolor...\n";
$file_data .= file_get_contents('text.txt');
file_put_contents('text.txt', $file_data);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment