Concatenate files in PHP

前端 未结 5 1221
感情败类
感情败类 2021-02-07 18:49

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

5条回答
  •  夕颜
    夕颜 (楼主)
    2021-02-07 19:08

    It's probably much faster to use the cat program in linux if you have command line permissions for PHP

    system('cat txt1 txt2 > txt3');
    

提交回复
热议问题