91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

php中table轉excel的方法

發布時間:2020-09-22 09:22:59 來源:億速云 閱讀:317 作者:小新 欄目:編程語言

這篇文章將為大家詳細講解有關php中table轉excel的方法,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。

php table轉excel的實現方法:首先定義一個“excelData”方法;然后設置表格數據、head以及表頭;最后通過“excelData($dataResult, $titlename, $headtitle...;”方式生成excel文件即可。

php 根據html table生成excel文件

<?php

/*
*處理Excel導出
*@param $datas array 設置表格數據
*@param $titlename string 設置head
*@param $title string 設置表頭
*/
function excelData($datas, $titlename, $title, $filename) {
    $str = "<html xmlns:o=\"urn:schemas-microsoft-com:office:office\"\r\nxmlns:x=\"urn:schemas-microsoft-com:office:excel\"\r\nxmlns=\"http://www.w3.org/TR/REC-html40\">\r\n<head>\r\n<meta http-equiv=Content-Type content=\"text/html; charset=utf-8\">\r\n</head>\r\n<body>";
    $str .= "<table border=1><head>" . $titlename . "</head>";
    $str .= $title;
    foreach ($datas as $key => $rt) {
        $str .= "<tr>";
        foreach ($rt as $k => $v) {
            $str .= "<td>{$v}</td>";
        }
        $str .= "</tr>\n";
    }
    $str .= "</table></body></html>";
    echo $str;
    header("Content-Type: application/vnd.ms-excel; name='excel'");
    header("Content-type: application/octet-stream");
    header("Content-Disposition: attachment; filename=" . $filename);
    header("Cache-Control: must-revalidate, post-check=0, pre-check=0");
    header("Pragma: no-cache");
    header("Expires: 0");
    exit($str);
}


$dataResult = array(array(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11), array(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11));
$headTitle = "XX保險公司 優惠券贈送記錄";
$title = "優惠券記錄";
$headtitle = "<tr style='height:50px;border-style:none;><th border=\"0\" style='height:60px;width:270px;font-size:22px;' colspan='11' >{$headTitle}</th></tr>";
$titlename = "<tr>
               <th style='width:70px;' >合作商戶</th>
               <th style='width:70px;' >會員卡號</th>
               <th style='width:70px;'>車主姓名</th>
               <th style='width:150px;'>手機號</th>
               <th style='width:70px;'>車牌號</th>
               <th style='width:100px;'>優惠券類型</th>
               <th style='width:70px;'>優惠券名稱</th>
               <th style='width:70px;'>優惠券面值</th>
               <th style='width:70px;'>優惠券數量</th>
               <th style='width:70px;'>贈送時間</th>
               <th style='width:90px;'>截至有效期</th>
           </tr>";
$filename = $title . ".xls";
excelData($dataResult, $titlename, $headtitle, $filename);
echo 'success';

關于php中table轉excel的方法就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

曲水县| 安平县| 靖江市| 皋兰县| 章丘市| 无锡市| 津南区| 关岭| 青川县| 建宁县| 台中市| 凌云县| 遂昌县| 全州县| 东辽县| 南澳县| 北京市| 阳曲县| 临江市| 新建县| 盐边县| 明星| 姜堰市| 安福县| 桑植县| 金阳县| 安西县| 车致| 富蕴县| 达日县| 长武县| 六枝特区| 卓尼县| 黑水县| 常德市| 大足县| 兴山县| 柏乡县| 子洲县| 莱芜市| 白河县|