チップス

Excel_peruser で excelデータを読み込む


Excel_Peruserはexcelファイルを読み込んで各セルの値を取得可能にします。
excel

require_once('peruser.php');

$obj = new Excel_Peruser;
$obj->setInternalCharset('utf-8');
$obj->setErrorHandling(1);
$obj->fileread('エクセルexcel.xls');
$col = $data->maxcell[0];

$row = $data->maxrow[0];

for( $i=0; $i<=$row; $i++ ) {
    print "row=" . $i . " [";
    for ( $j=0; $j<=$col; $j++ ) {
        if ( $j == $col ) {
                print $data->dispcell(0, $i, $j, $mode=0) ."]\n";

        } else {
                print $data->dispcell(0, $i, $j, $mode=0) . ",";
        }
    }
}

//var_dump($data);
?>

個人的にはこのExcel_peruserとExcel_Reviserが強力だと思います。


   チップス