0

我有一个包含未知数量的列的大表,我希望能够通过下载链接将其导出到 MS Excel。我以前做过这个,没有任何问题。但是,那时我有一个已知的数字或列。我目前能够成功地将数据发送到 Excel 文件。表格标题正确显示在表格顶部。问题出在数据上。它不是将整个页面中的数据放在正确的列中,而是将它们全部放在第一列中。这是我的代码的一部分:

while($row = mysql_fetch_row($result))          
{
    // Loops through the results
    for($i=0; $i < $num_cols; $i++)
    {
        // Prints out the data in a table cell
        echo("<Td class='data'>$row[$i]</Td>");
        $FileRecord = Array($row[$i]);
        $exportFile->Export_Record($FileRecord);
    }
}

通常我会这样做$FileRecord = Array($row[0], $row[1], ..., $row[n]),并且一切都很好,但是如果我不知道有多少列,我不确定该怎么做。任何帮助都会很棒!

我没有使用任何库。$exportFile来自我正在使用的功能。它看起来像这样:

class CSV_File {
private $out='';
private $name='';
private $column_names="";
private $count = 0;

//Creates the file name and the header columns
function __Construct($buf, $names) {
    $GLOBALS["name"] = $buf;
    $GLOBALS["column_names"] = ($names."\n");
}

public function Export_Record($array) {
    if (!is_array($array))
        throw new Exception("NOT AN ARRAY");
    for ($i = 0; $i <= count($array); $i++) {
        $GLOBALS["out"] .= $array[$i];

        if ($i < count($array)-1) {
            $GLOBALS["out"] .= ",";
        }
    }
    $GLOBALS["out"] .= "\n";
    $GLOBALS["out"]++;
}

public function ExportButton($align) {
        $output = $GLOBALS["out"];
        $filename = $GLOBALS["name"];
        $columns = $GLOBALS["column_names"];
        if ($align == null)
            $align = "align";
        echo("  <$align><form name=\"export\" action=\"export.php\" method=\"post\">
                <button type=\"submit\" style='border: 0; background: transparent; font-size: 12px;font-weight:bold;'>
                <img src = 'images/icon_csv.png' width = '16' height ='16' alt ='Download Data'> Download</button>
                <input type=\"hidden\" value=\"$columns\" name=\"csv_hdr\">
                <input type=\"hidden\" value=\"$filename\" name=\"fileprefix\">
                <input type=\"hidden\" value=\"$output\" name=\"csv_output\">
                </form></align>");
}
}

然后 export.php 看起来像这样:

if (isset($_POST['csv_hdr'])) 
{
$out .= $_POST['csv_hdr'];
$out .= "\n";
} 

if (isset($_POST['csv_output'])) 
{
$out .= $_POST['csv_output'];
}

if (isset($_POST['fileprefix'])) 
{
$fname .= $_POST['fileprefix'];
}

//Now we're ready to create a file. This method generates a filename based on the current date & time.
$filename = $fname."_".date("Y-m-d_H-i",time());

//Generate the CSV file header
header("Content-type: application/vnd.ms-excel");
header("Content-disposition: csv" . date("Y-m-d") . ".csv");
header("Content-disposition: filename=".$filename.".csv");

//Print the contents of out to the generated file.
print $out;

//Exit the script
exit;' 
4

1 回答 1

0

那不是 Excel 表格。这是一个 html 表格,您恰好将其输入 Excel。

您的问题是您没有为要获取的每条记录开始一个新的表格行,因此所有内容都只是第一行中的一个新单元格。

你需要类似的东西

while($row = mysql_fetch_assoc($result)) {
   echo '<tr>';
   foreach($row as $val) {
      echo "<td>$val</td>";
   }
   echo '</tr>';
}
于 2012-10-09T17:01:38.450 回答