将值导出为Excel文件格式

时间:2011-08-09 04:13:30

标签: php excel

您好我无法将数组中的值导出到excel,例如我将如何 导出以下内容:

echo "<table ' border='1' >"
    echo "<th>ComputerName</th>"));
    echo "<th>SerialNumber</th>";
    echo "<th>SystemModel</th>";
    echo "<th>DateTime</th>";
    echo "<th>Software</th>";
    echo "<th>Hardware</th>";
    echo "<th>Support</th>";
    echo "<th>Delete</th>";
    echo "</tr>";

$alt_color = 0;
while($row = mysql_fetch_array($result))

  {
    error_reporting (E_ALL ^ E_NOTICE);
    //foreach( $array_values as $value )
 $bgc = ( $alt_color % 2 ? 'Dark' : 'Light' );
     echo "<tr class=".$bgc.">";
    //echo "<td><a href=\"update.php?LSUserID=" .$row['LSUserID']."\">" .$row['LSUserID']."</a></td>";
    echo "<td><a href=\"update.php?LSUserID=" .$row['LSUserID']."\">" .$row['ComputerName']."</a></td>";
    echo "<td>" . $row['SerialNumber'] . "</td>";
    echo "<td>" . $row['SystemModel'] . "</td>";
    echo "<td>" . $row['DateTime'] . "</td>";   

4 个答案:

答案 0 :(得分:4)

您需要相应的标题(以下内容来自PHP文档中的example

$export = "my_name.xls";  

header('Pragma: public'); 
/////////////////////////////////////////////////////////////
// prevent caching....
/////////////////////////////////////////////////////////////
// Date in the past sets the value to already have been expired.
header("Expires: Sat, 26 Jul 1997 05:00:00 GMT");    
header('Last-Modified: '.gmdate('D, d M Y H:i:s') . ' GMT'); 
header('Cache-Control: no-store, no-cache, must-revalidate');     // HTTP/1.1 
header('Cache-Control: pre-check=0, post-check=0, max-age=0');    // HTTP/1.1 
header ("Pragma: no-cache"); 
header("Expires: 0"); 
/////////////////////////////////////////////////////////////
// end of prevent caching....
/////////////////////////////////////////////////////////////
header('Content-Transfer-Encoding: none'); 
// This should work for IE & Opera
header('Content-Type: application/vnd.ms-excel;');  
 // This should work for the rest
header("Content-type: application/x-msexcel");     
header('Content-Disposition: attachment; filename="'.basename($export).'"'); 

之后,您的代码应该进行一些修改(Excel可以读取HTML结构):

error_reporting (E_ALL ^ E_NOTICE); // you shouldn't have that in the loop.
                                    // you actually should put this first
echo "<table >"
    // the rest of your table opening code.

$alt_color = 0;
while($row = mysql_fetch_array($result))
{
     echo "<tr>";
     // the rest of your columns.
     echo "</tr>";
}
echo "</table>";

如果由于某种原因无效,那么你可以创建一个CSV,但是你需要担心逃避它:

// add all of the headers.
echo '"ComputerName","SerialNumber","SystemModel",'; //etc for all columns.

// row makes sure that there is only one set of values.
$row = mysql_fetch_row($result);
if( !$row ) die(); // no value found. exit.
echo getCSVRow( $row );
do // do...while lets us handle the \n more gracefully.
{
    echo "\n". getCSVRow( $row );
} while ($row = mysql_fetch_row($result));

function getCSVRow( array $row )
{
    $ret = "";
    foreach( $row as $val )
        $ret .= '"' . escapeCSV( $val ) . '",';
    return sustr( $ret, 0, strlen( $ret ) ); // clear the tailing comma
}

function escapeCSV( $str )
{
    return str_replace( '"', '\"', $str );
}

答案 1 :(得分:3)

您可以使用php-excel库在Excel中读取和写入数据。查找以下链接:

答案 2 :(得分:1)

我发现了一个受谷歌AppInventor启发的工具,可以在PHP / mySQL环境中创建数据库导出。 检查网站:http://www.freegroup.de/software/phpBlocks/demo.html

答案 3 :(得分:0)

使用phpBlock,您可以在拖放环境中创建db-&gt; excel导出,该环境受到麻省理工学院的OpenBlock或Google的AppInventor的启发。 这意味着没有必要在PHP中编写任何代码。

但导出功能只是php-lib的一种可能性。您可以将此lib用作现有PHP应用程序的动态扩展。像dyn。公式或计算。 我希望这比之前发布的更清楚。