php将txt转换为多维数组

时间:2016-04-12 11:03:03

标签: arrays

我有一个文件txt 我需要将它转换为多维数组

Value : La Semaine Juridique Notariale et Immobilière 

我尝试但输出:

/tost.txt 
------------------
where-when-who
cow-dog-cat
grape-aple-grape
------------------


<?php
$a = file("tost.php");
for($i = 0;$i<count($a);$i++)
{
$b = split("\-",$a[$i]);
}
?>

我曾尝试过array_merge(),array_combine(),explode(),implode();没有人需要 - &gt;

我需要输出

 Array ( [0] => where [1] => when [2] => who )
 Array ( [0] => cow [1] => dog [2] => cat )
 Array ( [0] => maggo [1] => aple [2] => grape )

感谢您的帮助 -

1 个答案:

答案 0 :(得分:0)

<?php
$result = Array();
$a = file("tost.php");
for($i = 0;$i<count($a);$i++) {
    $b = split("-",$a[$i]);
    $result[$i] = $b;
}
?>