インポートはこんな感じです↓。
lang
1// PHPExcelの読みこみ
2set_include_path(get_include_path() . PATH_SEPARATOR . './Classes/');
3include 'PHPExcel.php';
4include 'PHPExcel/IOFactory.php';
5
6// PHPExcel Readerオブジェクト
7$reader = PHPExcel_IOFactory::createReader("CSV");
8// CSVファイルのロード
9$PHPExcel = $reader->load("./data.csv");
10
エクスポートはこちら↓。
lang
1// Excelを読みこむ
2$reader = PHPExcel_IOFactory::createReader('Excel2007');
3$reader->setReadDataOnly(true);
4$PHPExcel = $reader->load("data.xlsx");
5// CSVファイルとして出力
6$writer = PHPExcel_IOFactory::createWriter($PHPExcel, 'CSV');
7$writer->save('out.csv');
文字コードの問題など他に考慮すべきことはありますので、とりあえず必要最小限バージョンです。
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。