web-dev-qa-db-ja.com

PHPExcelセルから列インデックスを取得する方法

PHPExcel $ cell-> getColumn()は 'A'、 'B'、 'C​​'、...を返します.

これは、セルから整数(0、1、2、...)を取得する最良の方法です。

この関数は存在しません。

$colIndex = $cell->getColumnIndex();

では、chrをasciiに変換する代わりのwithoputは何ですか?

22
john Griffiths
$colIndex = PHPExcel_Cell::columnIndexFromString($cell->getColumn());
46
Mark Baker

反復しながら列インデックスを取得できます。

$xls = PHPExcel_IOFactory::load($fn);
$xls->setActiveSheetIndex(0);
$sheet = $xls->getActiveSheet();

foreach($sheet->getRowIterator() as $row)
{
    foreach($row->getCellIterator() as $key => $cell)
    {
        echo $key; // 0, 1, 2...
        echo $cell->getCalculatedValue(); // Value here
    }
}
5
Shad
If you want to get decrement cell address using this function, you have to use another function with this function as follows.

<?php
echo columnLetter("AB");

function columnLetter($c){


$letter="";
    $c = intval(columnNumber($c));
    if ($c<=0) return '';

    while($c != 0){
       $p = ($c - 1) % 26;
       $c = intval(($c - $p) / 26);
       $letter = chr(65 + $p) . $letter;
    }

    return $letter;

}

function columnNumber($col){

    $col = str_pad($col,2,'0',STR_PAD_LEFT);
    $i = ($col{0} == '0') ? 0 : (ord($col{0}) - 64) * 26;
    $i += ord($col{1}) - 64;

    return $i-1;

}
?>
2