- file_put_contents: documentation ( source)
- fwrite: documentation ( source)
<?php
// appends the text to the end of the end of the file
file_put_contents($file, $text, FILE_APPEND);
// appends the text to the end of the end of the file
$fp = fwrite($file, 'a');
fwrite($fp, $text);