将.txt文件分成数组变量

时间:2012-03-16 13:42:14

标签: php arrays preg-match-all preg-split file-read

我在文本文件中有一个字符串

haha ;  J1.A1 DUT.A1  DUT.A2 C1.1 C2.1 ,
           F2.1 F4.1 K1.1 , 
           F2.1 F4.1 K1.1 ,
           F2.1 F4.1 K1.1  
aaa;  J1.A1 DUT.A1  DUT.A2 C2.1 C3.1 ,
           F3.1 F5.1 K2.1 , 
           F3.1 F5.1 K2.1 ,
           F3.1 F5.1 K2.1  

我想要像

这样的数组存储
$arr =array("haha J1.A1 DUT.A1 DUT.A2 C1.1 C2.1, F2.1 F4.1 K1.1, F2.1 F4.1 K1.1,F2.1 F4.1 K1.1", "aaa J1.A1 DUT.A1 DUT.A2 C2.1 C3.1, F3.1 F5.1 K2.1, F3.1 F5.1 K2.1, F3.1 F5.1 K2.1");

如果逗号不在行中,则转到下一个数组字段

提前致谢。

1 个答案:

答案 0 :(得分:0)

试试这段代码:

$file = 'my_file.txt';
$text = file_get_contents($file);
$lines = explode(',', $text);

$ text将包含您文件的全部内容 explode将在每个逗号上拆分$ text。 $ lines将是一个字符串数组。

文档:
file_get_contents
explode