2

PHPExcel 1.7.8 + CodeIgniter 2.1.3 で XLS ファイルをエクスポートしようとしています。

PHPExcelのすべての指示に従いました

しかし、私はこのエラーが発生しています:

要求されたクラスをロードできません:iofactory

ここに私のコントローラーコードがあります:

    //expoxt to excel all admin data
function export_excel_admin()
{
    //$data['resultsadmin'] = $this->admin_model->get_all_data_admin();
    //var_dump($data['resultsadmin']);
    //$this->load->view('administrator/export_excel/export_excel_admin', $data);
    $query = $this->db->get('tbl_admin');

    if(!$query)
        return false;

    // Starting the PHPExcel library
    $this->load->library('excel');
    $this->load->library('PHPexcel/IOFactory');

    $objPHPExcel = new PHPExcel();
    $objPHPExcel->getProperties()->setTitle("export")->setDescription("none");

    $objPHPExcel->setActiveSheetIndex(0);

    // Field names in the first row
    $fields = $query->list_fields();
    $col = 0;
    foreach ($fields as $field)
    {
        $objPHPExcel->getActiveSheet()->setCellValueByColumnAndRow($col, 1, $field);
        $col++;
    }

    // Fetching the table data
    $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);

    $objWriter = IOFactory::createWriter($objPHPExcel, 'Excel5');

    // Sending headers to force the user to download the file
    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');

}

また、IOFactory.php ファイルの「PHPExcel_」の部分を削除しましたが、この問題の解決策はありますか?

4

4 に答える 4

8

以前、CodeIgniter で PHPExcel を使用したことがあります。

私がしたことは、phpexcel フォルダーを application/ third-party にドロップし、次のラッパー ライブラリを作成することだけでした。

<?php

class Excel {

    private $excel;

    public function __construct() {
        // initialise the reference to the codeigniter instance
        require_once APPPATH.'third_party/phpexcel/PHPExcel.php';
        $this->excel = new PHPExcel();    
    }

    public function load($path) {
        $objReader = PHPExcel_IOFactory::createReader('Excel5');
        $this->excel = $objReader->load($path);
    }

    public function save($path) {
        // Write out as the new file
        $objWriter = PHPExcel_IOFactory::createWriter($this->excel, 'Excel5');
        $objWriter->save($path);
    }

    public function stream($filename) {       
        header('Content-type: application/ms-excel');
        header("Content-Disposition: attachment; filename=\"".$filename."\""); 
        header("Cache-control: private");        
        $objWriter = PHPExcel_IOFactory::createWriter($this->excel, 'Excel5');
        $objWriter->save('php://output');    
    }

    public function  __call($name, $arguments) {  
        // make sure our child object has this method  
        if(method_exists($this->excel, $name)) {  
            // forward the call to our child object  
            return call_user_func_array(array($this->excel, $name), $arguments);  
        }  
        return null;  
    }  
}

?>

次に、コントローラーで次のことを実行できます。

$this->load->library("excel");
$this->excel->load("/path/to/input.xls");
$this->excel->setActiveSheetIndex(0);
$this->excel->getActiveSheet()->SetCellValue('B2', "whatever");
$this->excel->save("/path/to/output.xls");

これがあなたを助けてくれることを願っていますか?

于 2013-02-22T17:21:19.950 に答える
3

たぶん、このコメントは遅すぎました。しかし、他の人にとっては役立つかもしれません。

以下の部品コードを変更します。

// Starting the PHPExcel library
$this->load->library('excel');
$this->load->library('PHPexcel/IOFactory');

に:

// Starting the PHPExcel library
$this->load->library('excel');
//$this->load->library('PHPexcel/IOFactory');

次に、このパーツ コードも変更します。

 $objWriter = IOFactory::createWriter($objPHPExcel, 'Excel5');

に:

 $objWriter = PHPExcel_IOFactory::createWriter($objPHPExcel, 'Excel5');
于 2015-02-05T04:36:51.417 に答える
0

あなたに必要なのは

//afrer this you can use any of PHPExcel classes and methods
$this->load->file(APPPATH.'libraries/PHPExcel.php'); //full path to 

$objReader = new PHPExcel_Reader_Excel2007();//change by filetype
try {
    $objPHPExcel = $objReader->load($inputFileName); //you file name
} catch (Exception $e) {
    show_error($e->getMessage());
}

CI 2.1.3 &&PHPExcel1.7.8でテスト済み

于 2013-02-28T00:56:06.597 に答える
-1

CodeIgniter と PHPExcel を統合するには、次の手順に従います。

CI 内に新しい PHP ファイルを作成し、application/libraries/Excel.php という名前を付けます。

require_once APPPATH."/third_party/PHPExcel.php";
class Excel extends PHPExcel {
 public function __construct(){
  parent::__construct(); 
 } 
}

完全な手順に従うには、 Phpexcel をCodeigniter フレームワークに簡単に統合する にアクセスしてください。

于 2016-09-06T17:03:09.667 に答える