in reply to Re^3: Split array and join with results
in thread Split array and join with results

Assuming your text file contains one entry on each line like this:
iph1 iph2 iph3 ...
You can simply slurp this file into an array like this:
@phones=<FILE_HANDLE>;
Make sure you use chomp on the array elements appropriately!

Does this make sense?