thinkphp匯出csv檔案

來源:互聯網
上載者:User

標籤:style   blog   http   color   io   os   ar   檔案   2014   

匯出csv檔案可能就那幾行代碼,今天有個問題困擾我好久,就是匯出之後出現一些html代碼,這個不應該,view裡面是空的,controller中最後也沒有$this->display(),最後細心看到think_page_trace這樣的字樣,恍然大悟,是頁面的追蹤記錄檔,這個預設是會輸出來的。最後在方法後面加了一個exit結束就好了,下面是代碼:

1.IndexController.class.php

<?phpnamespace Home\Controller;use Think\Controller;class IndexController extends Controller {    public function index(){        $hotel = M(‘keywords‘)->field(‘PageName,Page‘)->select();        $str = "關鍵字,名稱\n";        $str = iconv(‘utf-8‘,‘gb2312‘,$str);        $result = mysql_query("select PageName,Page from hotel_keywords");        while($row=mysql_fetch_array($result)){            $PageName = iconv(‘utf-8‘,‘gb2312‘,$row[‘PageName‘]);            $Page = iconv(‘utf-8‘,‘gb2312‘,$row[‘Page‘]);            $str .= $PageName.",".$Page."\n";        }        $fileName = date(‘Ymd‘).‘.csv‘;        $model = D(‘Keywords‘);        $model->export_csv($fileName,$str);        exit;    }}

2.KeywordsModel.class.php

<?php namespace Home\Model;use Think\Model;class KeywordsModel extends Model{        public function export_csv($filename, $data){        header("Content-type:text/csv");           header("Content-Disposition:attachment;filename=".$filename);           header(‘Cache-Control:must-revalidate,post-check=0,pre-check=0‘);           header(‘Expires:0‘);           header(‘Pragma:public‘);        echo $data;            }}

奧妙就在IndexController.class.php代碼最後一句的exit這裡,如果不寫這句,輸出的excel裡面有html源碼,如下:

 

thinkphp匯出csv檔案

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.