Home > Perl/CGI, PHP > Php Scrpt To Merge Lines

Php Scrpt To Merge Lines

December 6th, 2009

I want a PHP script that merges sentences from 2 or 3 files.

File 1
——
Line 11
Line 12
Line 13

File 2
——

Line 21
Line 22
Line 23

File 3 optional
—————

Output
——
Line 11 Line 21
Line 12 Line 22
Line 13 Line 23

File 3 entries will also be merged if input.

Options to enter prefix/suffix/betwixt
————————————–

Prefix: {
Suffix: }
Betwixt:|

Output :-
——–
{Line 11|Line 21}
{Line 12|Line 22}
{Line 13|Line 23}

With File 3 options
——————–

{Line 11|Line 21|Line 31}
{Line 12|Line 22|Line 32}
{Line 13|Line 23|Line 33}

There should be no errors whatsoever!


Php Scrpt To Merge Lines

Categories: Perl/CGI, PHP Tags: , , , , ,
Comments are closed.
Bear