-
-
class Table_export extends CI_Controller {
function __construct()
- {
- parent::__construct();
-
// ここで、ある種のユーザー検証を追加する必要があります
- // 見知らぬ人がテーブル データを取得するのを防ぐため
- }
functionindex($table_name)
- {
- $this- >load->database();
- $query = $this->db->query("select * from `$table_name` WHERE del= 1");
- // $query = mb_convert_encoding("gb2312 ", "UTF-8", $query);
- if(!$query)
- return false;
// PHPExcel ライブラリを開始します
- $this->load->library ('PHPExcel');
- $this->load->library('PHPExcel/IOFactory');
$objPHPExcel = new PHPExcel();
- $objPHPExcel->getProperties ()->setTitle("export")->setDescription("none");
$objPHPExcel->setActiveSheetIndex(0)
- ->setCellValue('A1', iconv('gbk', 'utf-8', '中文Hello'))
- ->setCellValue('B2', 'world!')
- ->setCellValue('C1', 'Hello');
- / / 最初の行のフィールド名
- $fields = $query->list_fields();
- $col = 0;
- foreach ($fields as $field)
- {
- $objPHPExcel->getActiveSheet()->setCellValueByColumnAndRow ($col, 1, $field);
- $col++;
- }
// テーブルデータを取得します
- $row = 2;
- foreach($query->result() as $data)
- {
- $col = 0;
- foreach ($fields as $field)
- {
- $objPHPExcel->getActiveSheet()->setCellValueByColumnAndRow($col, $row, $data->$field) ;
- $col++;
- }
$row++;
- }
$objPHPExcel->setActiveSheetIndex(0);
- < p>$objWriter = IOFactory::createWriter($objPHPExcel, 'Excel5');
//発行标题强制用户ダウンロード文
- header('Content-Type: application/vnd.ms- Excel');
- header('Content-Disposition:attachment;filename="Products_'.date('dMy').'.xls"');
- header('Cache-Control: max-age=0');
$objWriter->save('php://output');
- }
- }
- ?>
-
复制代网
追加データベース库表名がproductsで、http://www.yourwebsite.com/table_export/index/productsにアクセスすると、Excelファイルを出力できます。
|