I\'d like to know if there is a faster way of concatenating 2 text files in PHP, than the usual way of opening txt1 in a+, reading txt2 li
txt1
a+
txt2
$content = file_get_contents("file1"); file_put_contents("file2", $content, FILE_APPEND);