将文本文件分解为数组依赖于逗号

时间:2018-05-29 05:32:34

标签: php regex reference

我想将text.tx转换为数组,仅依赖于逗号,例如:

如果我有这个文字: enter image description here

所以我需要像这样执行我的数组:

enter image description here

请检查我的代码,我的代码不能很好地工作,因为它依赖于逗号和换行符:

{{1}}

1 个答案:

答案 0 :(得分:-1)

$handle = fopen("text.txt", "r");
if ($handle) {
    $data = [];
    while (($line = fgets($handle)) !== false) {
        $data[] = explode(',', $line);
    }

    fclose($handle);
    echo "<pre>";
    print_r($data); 
} else {
    // error opening the file.
}