1

我正在尝试将一个制表符分隔的文本文件解析为一组 PHP 数组,非常感谢您的帮助。

.txt 看起来像这样(制表符分隔而不是空格)

data1a data1b data1c data1d
data2a data2b data2c data2d
data3a data3b data3c data3d
data4a data4b data4c data4d

等等

我希望 PHP 数组看起来像这样

$arrayA = array('data1a', 'data2a', 'data3a', 'data4a');
$arrayB = array('data1b', 'data2b', 'data3b', 'data4b');
$arrayC = array('data1c', 'data2c', 'data3c', 'data4c');
$arrayD = array('data1d', 'data2d', 'data3d', 'data4d');

我需要一个简单的html表单上传的.txt文件,例如

<form action="form.php" method="post" enctype="multipart/form-data">
  <label for="file">Filename:</label>
  <input type="file" name="file" id="file" /> 
  <input type="submit" name="submit" value="Submit" />
</form>

关于放在 form.php 中的代码有什么想法吗?

非常感谢!

4

2 回答 2

6

考虑text.txt文件的内容

FristLineFirstData FirstLineSecondData FirstLineThirdData
SecondLineFirstData SecondLineSecondData SecondLineThirdData

制表符分开。

和脚本:

<?php
$file = "text.txt";// Your Temp Uploaded file
$handle = fopen($file, "r"); // Make all conditions to avoid errors
$read = file_get_contents($file); //read
$lines = explode("\n", $read);//get
$i= 0;//initialize
foreach($lines as $key => $value){
    $cols[$i] = explode("\t", $value);
    $i++;
}
echo "<pre>";
print_r($cols); //explore results
echo "</pre>";
?>

将返回

大批
(
    [0] => 数组
        (
            [0] => FristLineFirstData
            [1] => FirstLineSecondData
            [2] => FirstLineThirdData
        )

    [1] => 数组
        (
            [0] => SecondLineFirstData
            [1] => SecondLineSecondData
            [2] => SecondLineThirdData
        )

)
于 2012-12-03T18:48:49.513 回答
0

以下是针对您的问题的准系统解决方案:

<?php
 $error = false;

 if (isset($_POST) && isset($_POST['submit']) && isset($_FILES) {)
    $file = $_FILES['file'];
    if (file_exists($_FILES['tmp_name'])){
       $handle = fopen($_FILES['tmp_name']);
       $data = fgetcsv($handle, 0, '\t');
    }
    // do your data processing here
    // ...
    // do your processing result display there
    // ...
    // or redirect to another page.
 }
 if ($error) {
   // put some error message here if necessary
 }
 // form display below
 ?>
 <!-- HTML FORM goes here --!>
 <?
 }
 ?>

文件数据将全部分组在同一个数组$data中,由文件中相应的行号索引。

看:

在 PHP 文档网站上。

于 2012-12-03T18:36:07.980 回答