How do I prepend file to beginning?

$prepend = 'prepend me please';

$file="/path/to/file";

$fileContents = file_get_contents($file);

file_put_contents($file, $prepend . $fileContents);

Leave a Comment