PHP上でExcelを使えるPHPExcelというライブラリについて勉強中。 PHPExcel http://phpexcel.codeplex.com/ これを使って、以下の様なプログラムを書く。 <?php set_include_path(get_include_path() . PATH_SEPARATOR . './PHPExcel-1.7.5/Classes/'); include 'PHPExcel.php'; include 'PHPExcel/IOFactory.php'; $objReader = PHPExcel_IOFactory::createReader('Excel5'); $objPHPExcel = $objReader->load('sum.xls'); $sheet = $objPHPExcel->getActiveSheet(); $a1 = $sh