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
It's probably much faster to use the cat program in linux if you have command line permissions for PHP
cat
system('cat txt1 txt2 > txt3');