web-dev-qa-db-fra.com

PHPExcel comment obtenir l'index de colonne à partir d'une cellule

PHPExcel $ cell-> getColumn () renvoie 'A', 'B', 'C', ...

qui est le meilleur moyen d'obtenir l'entier (0, 1, 2, ...) de la cellule.

Cette fonction n'existe pas.

$colIndex = $cell->getColumnIndex();

Alors, quelle est l'alternative sans conversion de chr en ascii?

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

Vous pouvez obtenir l'index des colonnes pendant l'itération.

$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
Sarath Wijeshinghe