3

我是 PHP 新手,我遇到了这个问题。

$mimes = array('application/vnd.ms-excel','text/plain','text/csv','text/tsv');
if (((in_array($_FILES['uploadedfile']['type'],$mimes)))
    && ($_FILES["uploadedfile"]["size"] > 0))
{
    $filename = $_SESSION['username'].$_FILES["uploadedfile"]["name"];
    move_uploaded_file($_FILES["uploadedfile"]["tmp_name"],"./uploads/".$filename);

    echo "Stored in: " . "./uploads/" .$filename;
    echo "<br />\n";
    echo 'Daylight hours will be calculated for this latitude : '.$_POST['latCSV'];
    echo "<br>";
    //print out uploaded file.csv
    echo "<table BORDER=1>\n\n";
    echo "  <tr><th>AvgCrown</th><th>MinCrown</th><th>MaxCrown</th><th>dateLogged</th><th>DaylightHours</th></tr>";
    echo "<tbody id='tblBdyLoggedData'>";
    $f = fopen("./uploads/" .$filename, "r");
    $i=0;   //just a counter
    while (($line = fgetcsv($f)) !== false) {
        echo "<tr>";
        foreach ($line as $cell) {
            // Save the value before you output
            $lastColValue = htmlspecialchars($cell);
            //unset($lastColValue[3]);
            echo "<td>" . $lastColValue . "</td>";

        }
        //checking if date is valid
        checkDateString($lastColValue);

        // If you want to store all log dates in an array:
        $logDates[] = $lastColValue;                            
        $firstlogDate = $logDates[$i];
        echo "<td>" . checkDateString($lastColValue) . "</td>";
        //call function using firstlogDate for every row
        echo "<td>" . calcDaylight($firstlogDate,$_POST["latCSV"]) . "            </td>";
        echo "</tr>\n";
        $i = $i+1;
    }
    fclose($f);
    echo "</tbody></table></body></html>";
}

我想在文件上传时只打印 CSV 文件的前 3 列,因为另外两列将使用各自的函数进行计算。Datelogged 将从 csv 中获取并正确重新格式化,并且还会根据 datelogged 计算日光时间。

4

3 回答 3

2

首先,使用 PHP 文件系统库解析 $file_contents:

$foo = split(',', $file_contents);

参考: http: //php.net/manual/en/book.filesystem.php

现在您可以访问前三列:

echo foo[0] . '/' . foo[1] . '/' . foo[2];
于 2012-07-16T16:25:21.283 回答
1

愿此代码对您有所帮助

?php
echo "<html><body><table>\n\n";
$f = fopen("so-csv.csv", "r");
while (($line = fgetcsv($f)) !== false) {
        $count=0;
        echo "<tr>";
        foreach ($line as $cell ) 
        {
            if($count<3)
            {    
                echo "<td>" . htmlspecialchars($cell) . "</td>";
                $count++;
            }
        }
        echo "<tr>\n";
}
fclose($f);
echo "\n</table></body></html>";
于 2012-07-16T16:24:38.437 回答
1

替换这个:

                    foreach ($line as $cell) {
                        // Save the value before you output
                        $lastColValue = htmlspecialchars($cell);
                        //unset($lastColValue[3]);
                        echo "<td>" . $lastColValue . "</td>";

                    }

有了这个:

                    $lineValues = array_values($line);
                    if (count($line) < 3) {
                        echo "<td>This line is unusable</td><td></td><td></td>";
                    }
                    for ($colNum = 0; $colNum < 3; $colNum++) {
                        echo "<td>" . htmlspecialchars($lineValues[$colNum]) . "</td>";
                    }
于 2012-07-16T16:25:27.897 回答