최근에 올라온 글
최근에 달린 댓글
Total
Today
Yesterday

티스토리 뷰

   Developer Documentation : 07.셀에 엑세스하기


https://github.com/PHPOffice/PHPExcel/blob/develop/Documentation/markdown/Overview/07-Accessing-Cells.md


에 있는 PHPExcel 중 셀 엑세스에 관한 내용을 본인이 해석한 것 입니다.



   cell에 엑세스하기


PHPExcel 워크 시트의 셀 에 액세스 하는 것은 아주 간단하다, 여기에서는 셀에 액세스 할 수 있는 옵션 중 일부를 보여줍니다.


좌표에 의한 셀 값의 설정.


좌표의 셀 값은 워크시트의 setCellValue() 메서드에서 사용할 수 있다.


// Set cell A1 with a string value

$objPHPExcel->getActiveSheet()->setCellValue('A1', 'PHPExcel');


// Set cell A2 with a numeric value

$objPHPExcel->getActiveSheet()->setCellValue('A2', 12345.6789);


// Set cell A3 with a boolean value

$objPHPExcel->getActiveSheet()->setCellValue('A3', TRUE);


// Set cell A4 with a formula

$objPHPExcel->getActiveSheet()->setCellValue(

    'A4', 

    '=IF(A3, CONCATENATE(A1, " ", A2), CONCATENATE(A2, " ", A1))'

);




날짜/시간의 셀 값 설정


날짜/시간 값은 Excel에서 타임 스탬프 ( 간단한 부동 소수점 값 ) 으로 유지 되고 , 숫자 형식 마스크는 그 값 의 형식 지정 방법을 

나타내는 데 사용 됩니다. 셀에 날짜를 저장하고자 한다면, 우리는 올바른 Excel 의 타임 스탬프를 계산 하고 숫자 형식 마스크를 

설정 해야 합니다.


// Get the current date/time and convert to an Excel date/time

$dateTimeNow = time();

$excelDateValue = PHPExcel_Shared_Date::PHPToExcel( $dateTimeNow );

// Set cell A6 with the Excel date/time value

$objPHPExcel->getActiveSheet()->setCellValue(

    'A6', 

    $excelDateValue

);

// Set the number format mask so that the excel timestamp will be displayed as a human-readable date/time

$objPHPExcel->getActiveSheet()->getStyle('A6')

    ->getNumberFormat()

    ->setFormatCode(

        PHPExcel_Style_NumberFormat::FORMAT_DATE_DATETIME

    );



앞의 숫자가 0인 읽기설정


기본적으로 PHPExcel은 자동으로 값 형식을 감지하고 적절한 Excel 데이터 형식으로 설정합니다.


이 문서의 섹션 제목에서 설명 했듯이 이런종류의 변환은 데이터 입력을 용이하게 하기 위해 값 바인더 사용을 하고


값 바인더에 의해 처리 됩니다.


숫자는 앞에 0을 가지고 있지 않습니다. 그래서 앞에 0이 있는 숫자를 설정하면(전화번호 같은) "01513789642"의 경우 1513789642로 표시됩니다.


이 동작을 강제로 PHPExcel에서 사용하는 방법은 2가지가 있습니다.


첫번째로 숫자로 변환되지 않도록 먼저 문자열로 명시적 데이터 선언 설정을 통하여 해결하는 방법입니다.


// Set cell A8 with a numeric value, but tell PHPExcel it should be treated as a string

$objPHPExcel->getActiveSheet()->setCellValueExplicit(

    'A8', 

    "01513789642",

    PHPExcel_Cell_DataType::TYPE_STRING

);


다른 방법으로 맨 앞에 0을 가지는 값을 표시하려면 숫자 형식 마스크로 사용할 수 있습니다.


// Set cell A9 with a numeric value

$objPHPExcel->getActiveSheet()->setCellValue('A9', 1513789642);

// Set a number format mask to display the value as 11 digits with leading zeroes

$objPHPExcel->getActiveSheet()->getStyle('A9')

    ->getNumberFormat()

    ->setFormatCode(

        '00000000000'

    );



숫자형식 마스크를 사용하여, 값을 더 쉽게 읽을 수 있도록 그룹으로 자리를 끊을 수 있다.


// Set cell A10 with a numeric value

$objPHPExcel->getActiveSheet()->setCellValue('A10', 1513789642);

// Set a number format mask to display the value as 11 digits with leading zeroes

$objPHPExcel->getActiveSheet()->getStyle('A10')

    ->getNumberFormat()

    ->setFormatCode(

        '0000-000-0000'

    );


그림 "07-simple-example-1.png" 참조





주의. 화면에서 표시 형식의 값을 검색할때 복잡한 형식 마스크가 동작합니다.


또는 HTML이나 PDF같은 특정 파일의 쓰기에서도 Excel2007 및 Excel5 스프레드시트 쓰기와 함께 작동합니다.




셀에서 배열의 범위를 지정


fromArray()메서드에 값을 전달하여 셀 범위를 설정하는 것이 가능하다.


$arrayData = array(

    array(NULL, 2010, 2011, 2012),

    array('Q1',   12,   15,   21),

    array('Q2',   56,   73,   86),

    array('Q3',   52,   61,   69),

    array('Q4',   30,   32,    0),

);

$objPHPExcel->getActiveSheet()

    ->fromArray(

        $arrayData,  // The data to set

        NULL,        // Array values with this value will not be set

        'C3'         // Top left coordinate of the worksheet range where

                     //    we want to set these values (default is A1)

    );


그림 "07-simple-example-2.png" 참조





만약 2차원 배열을 전달한다면 이것은 일련의 행과 열에 취급될 것이다.


1차원 배열을 사용한다면 하나의 행으로 처리되기 때문에 데이터베이스에서 데이터의 배열을 가져오는 경우에 특히 유용하다.


$rowArray = array('Value1', 'Value2', 'Value3', 'Value4');

$objPHPExcel->getActiveSheet()

    ->fromArray(

        $rowArray,   // The data to set

        NULL,        // Array values with this value will not be set

        'C3'         // Top left coordinate of the worksheet range where

                     //    we want to set these values (default is A1)

    );

07-simple-example-3.png 참조




당신은 간단한 1차원 배열을 가지고있으면서 열(column)로 그것을 쓰고 싶은경우 fromArray()메서드를 사용하여 구조화된 2차원 배열로의 변환이 가능하다.


$rowArray = array('Value1', 'Value2', 'Value3', 'Value4');

$columnArray = array_chunk($rowArray, 1);

$objPHPExcel->getActiveSheet()

    ->fromArray(

        $columnArray,   // The data to set

        NULL,           // Array values with this value will not be set

        'C3'            // Top left coordinate of the worksheet range where

                        //    we want to set these values (default is A1)

    );


07-simple-example-4.png 참조





좌표로 셀값을 가져오기


셀의 값을 검색하려면 먼저 getCell()메서드를 사용하여 워크시트에서 검색 할 수 있어야 합니다.


셀의 값은 getValue()메서드를 사용하여 읽을 수 있습니다.


// Get the value fom cell A1

$cellValue = $objPHPExcel->getActiveSheet()->getCell('A1')

    ->getValue();



이렇게하면 셀에 포맷되지않은 원시 값을 가져옵니다.


만약 셀에 수식이 포함되어있고 계산되거나 식 자체를 취득할 필요가 있는 경우 getCalculatedValue() 메서드를 사용합니다.


다음은 이것을 설명합니다.


// Get the value fom cell A4

$cellValue = $objPHPExcel->getActiveSheet()->getCell('A4')

    ->getCalculatedValue();


또는 당신이 어떤 셀(사람이 읽을 수 있는 날짜/시간/값 등)에 서식이 적용된 값을 보고 싶은 경우


셀의 getFormattedValue() 메서드를 사용할 수 있다.


// Get the value fom cell A6

$cellValue = $objPHPExcel->getActiveSheet()->getCell('A6')

    ->getFormattedValue();



행과 열에서 셀 값을 설정


좌표를 사용하여 셀 값을 설정하려면 워크시트의 setCellValueByColumnAndRow() 메서드를 사용하여 수행할 수 있다.


// Set cell B5 with a string value

$objPHPExcel->getActiveSheet()->setCellValueByColumnAndRow(1, 5, 'PHPExcel');


주의. column 'A'의 시작은 1이 아니라 0부터 입니다.


행과 열에서 셀 값을 가져오기


셀의 값을 검색하려면 getCellByColumnAndRow() 메서드를 사용하여 워크시트에서 검색해야 합니다.


셀의 값은 다음의 코드를 사용하여 다시 로드됩니다.


// Get the value fom cell B5

$cellValue = $objPHPExcel->getActiveSheet()->getCellByColumnAndRow(1, 5)

    ->getValue();


당신이 셀의 계산이 필요하면, 다름의 코드를 사용한다. 


이것은 더 설명한다.


// Get the value fom cell A4

$cellValue = $objPHPExcel->getActiveSheet()->getCellByColumnAndRow(0, 4)

    ->getCalculatedValue();



셀 값의 범위를 배열로 가져오기


이것은 하나의 셀을 배열로 가져오는것도 가능하고 toArray(), rangeToArray()혹은 namedRangeToArray() 메서드들을 사용하여 


셀 값의 범위를 가져온다.


$dataArray = $objPHPExcel->getActiveSheet()

    ->rangeToArray(

        'C3:E5',     // The worksheet range that we want to retrieve

        NULL,        // Value that should be returned for empty cells

        TRUE,        // Should formulas be calculated (the equivalent of getCalculatedValue() for each cell)

        TRUE,        // Should values be formatted (the equivalent of getFormattedValue() for each cell)

        TRUE         // Should the array be indexed by cell row and cell column

    );



이 메서드는 모든 행과 열의 2차원 배열을 반환한다. 


toArray()메서드는 워크시트 전체를 반환한다.


rangeToArray()는 지정된 범위 또는 셀을 반환한다.


namedRangeToArray()는 정의된 이름의 범위의 셀을 반환한다.



셀 반복


반복자를 사용하여 셀 루프


셀을 반복하는 가장 쉬운 방법은 반복자를 사용하는 것입니다.


반복자를 사용하면 워크시트에 대해 foreach를 사용할 수 있고, 워크시트내에서 행과 행에 있는 셀들을 사용할 수 있다.


아래는 워크시트의 모든 값을 읽고 테이블에 표시한 예 입니다.


$objReader = PHPExcel_IOFactory::createReader('Excel2007');

$objReader->setReadDataOnly(TRUE);

$objPHPExcel = $objReader->load("test.xlsx");


$objWorksheet = $objPHPExcel->getActiveSheet();


echo '<table>' . PHP_EOL;

foreach ($objWorksheet->getRowIterator() as $row) {

    echo '<tr>' . PHP_EOL;

    $cellIterator = $row->getCellIterator();

    $cellIterator->setIterateOnlyExistingCells(FALSE); // This loops through all cells,

                                                       //    even if a cell value is not set.

                                                       // By default, only cells that have a value 

                                                       //    set will be iterated.

    foreach ($cellIterator as $cell) {

        echo '<td>' . 

             $cell->getValue() . 

             '</td>' . PHP_EOL;

    }

    echo '</tr>' . PHP_EOL;

}

echo '</table>' . PHP_EOL;


주의. 우리는 셀의 반복자인 setIterateOnlyExistingCells()메서드를 FALSE로 설정했다.


설정되어있지 않은 경우라 할지라도 워크시트 범위내의 모든 셀 반복하는 반복자를 만든다.


그것이 워크시트에 설정되어있지 않으면 셀 반보자는 셀의 값으로 NULL을 반환합니다.


워크시트의 모든 셀을 사용할 수 있을때까지 setIterateOnlyExistingCells()는 FALSE가 뜬다.


메모리사용의 증가 되거나 필요한 경우 세로운 셀이 만들어진다. 오직 반복하여 사용할 수 있는 셀이 모든 대상으로 하는 경우에만 사용된다.


인덱스를 사용하여 셀 반복


하나는 "A1"을 읽거나 쓸때에 셀 반복을 사용하는 대신 (0,1)로 열과 행을 인덱스로 엑세스하여 사용할 수 있습니다.


참고 : PHPExcel의 행(row) 인덱스는 1부터 시작할때, 열(column) 인덱스는 0부터 시작합니다. 즉 'A1'~경우 (0,1)을 의미합니다.


다음은 우리가 워크시트에 있는 모든 값을 읽어 테이블에 표시하는 예제입니다.


$objReader = PHPExcel_IOFactory::createReader('Excel2007');

$objReader->setReadDataOnly(TRUE);

$objPHPExcel = $objReader->load("test.xlsx");


$objWorksheet = $objPHPExcel->getActiveSheet();

// Get the highest row and column numbers referenced in the worksheet

$highestRow = $objWorksheet->getHighestRow(); // e.g. 10

$highestColumn = $objWorksheet->getHighestColumn(); // e.g 'F'

$highestColumnIndex = PHPExcel_Cell::columnIndexFromString($highestColumn); // e.g. 5


echo '<table>' . "\n";

for ($row = 1; $row <= $highestRow; ++$row) {

    echo '<tr>' . PHP_EOL;

    for ($col = 0; $col <= $highestColumnIndex; ++$col) {

        echo '<td>' . 

             $objWorksheet->getCellByColumnAndRow($col, $row)

                 ->getValue() . 

             '</td>' . PHP_EOL;

    }

    echo '</tr>' . PHP_EOL;

}

echo '</table>' . PHP_EOL;


다른방법으로는 셀의 좌표를 통해 PHP의 Perl스타일 문자 incrementors를 이용할 수 있습니다.


$objReader = PHPExcel_IOFactory::createReader('Excel2007');

$objReader->setReadDataOnly(TRUE);

$objPHPExcel = $objReader->load("test.xlsx");


$objWorksheet = $objPHPExcel->getActiveSheet();

// Get the highest row number and column letter referenced in the worksheet

$highestRow = $objWorksheet->getHighestRow(); // e.g. 10

$highestColumn = $objWorksheet->getHighestColumn(); // e.g 'F'

// Increment the highest column letter

$highestColumn++;


echo '<table>' . "\n";

for ($row = 1; $row <= $highestRow; ++$row) {

    echo '<tr>' . PHP_EOL;

    for ($col = 'A'; $col != $highestColumn; ++$col) {

        echo '<td>' . 

             $objWorksheet->getCell($col . $row)

                 ->getValue() . 

             '</td>' . PHP_EOL;

    }

    echo '</tr>' . PHP_EOL;

}

echo '</table>' . PHP_EOL;


<= 비교를 여기에서 사용할 수 없다. 왜냐하면 'AA'는 <= 'B'로 일치하기 때문이다.


그래서 우리는 높은 열 문자가 올 동안 "$col != highestColumn" 으로 비교한다.



데이터 입력을 용이하게 하기 위해서 값 바인더를 사용한다.


내부적으로 PHPExcel은 기본PHPExcel_Cell_IValueBinder 구현(PHPExcel_Cell_DefaultValueBinder)을 사용한다.


셀의 setValue()메서드 (참고 : setValueExplicit()메서드는 이 검사를 생략.) 를 사용하여 입력된 데이터 형식을 결정한다.


선택적으로, PHPExcel의 기본동작은 쉽게 데이터를 입력 할 수 있도록 수정될 수 있다.


예를 들어 PHPExcel_Cell_AdvancedValueBinder 클래스를 사용할 수 있다.


그것은 자동으로 퍼센트나 과학적인 체재의 수 및 셀 스타일 설정 정보가 올바른 형식의 문자열로 입력 된 날짜로 변환 합니다.


다음 예제는 PHPExcel의 값 바인더를 설정하는 방법을 보여줍니다.


/** PHPExcel */

require_once 'PHPExcel.php';


// Set value binder

PHPExcel_Cell::setValueBinder( new PHPExcel_Cell_AdvancedValueBinder() );


// Create new PHPExcel object

$objPHPExcel = new PHPExcel();


// ...

// Add some data, resembling some different data types

$objPHPExcel->getActiveSheet()->setCellValue('A4', 'Percentage value:');

// Converts the string value to 0.1 and sets percentage cell style

$objPHPExcel->getActiveSheet()->setCellValue('B4', '10%');


$objPHPExcel->getActiveSheet()->setCellValue('A5', 'Date/time value:');

// Converts the string value to an Excel datestamp and sets the date format cell style

$objPHPExcel->getActiveSheet()->setCellValue('B5', '21 December 1983');  



자신의 값 바인더를 만들기 쉽습니다.


고급 값 바인딩이 필요한 경우, 당신은 PHPExcel_IValueBinder인터페이스를 구현하거나 PHPExcel_Cell_DefaultValueBinder 또는 PHPExcel_Cell_AdvancedValueBinder 클래스를 확장 할 수 있습니다.












영어원문


Accessing cells

Accessing cells in a PHPExcel worksheet should be pretty straightforward. This topic lists some of the options to access a cell.

Setting a cell value by coordinate

Setting a cell value by coordinate can be done using the worksheet's setCellValue() method.

// Set cell A1 with a string value
$objPHPExcel->getActiveSheet()->setCellValue('A1', 'PHPExcel');

// Set cell A2 with a numeric value
$objPHPExcel->getActiveSheet()->setCellValue('A2', 12345.6789);

// Set cell A3 with a boolean value
$objPHPExcel->getActiveSheet()->setCellValue('A3', TRUE);

// Set cell A4 with a formula
$objPHPExcel->getActiveSheet()->setCellValue(
    'A4', 
    '=IF(A3, CONCATENATE(A1, " ", A2), CONCATENATE(A2, " ", A1))'
);

Setting a date and/or time in a cell

Date or time values are held as timestamp in Excel (a simple floating point value), and a number format mask is used to show how that value should be formatted; so if we want to store a date in a cell, we need to calculate the correct Excel timestamp, and set a number format mask.

// Get the current date/time and convert to an Excel date/time
$dateTimeNow = time();
$excelDateValue = PHPExcel_Shared_Date::PHPToExcel( $dateTimeNow );
// Set cell A6 with the Excel date/time value
$objPHPExcel->getActiveSheet()->setCellValue(
    'A6', 
    $excelDateValue
);
// Set the number format mask so that the excel timestamp will be displayed as a human-readable date/time
$objPHPExcel->getActiveSheet()->getStyle('A6')
    ->getNumberFormat()
    ->setFormatCode(
        PHPExcel_Style_NumberFormat::FORMAT_DATE_DATETIME
    );

Setting a number with leading zeroes

By default, PHPExcel will automatically detect the value type and set it to the appropriate Excel datatype. This type conversion is handled by a value binder, as described in the section of this document entitled "Using value binders to facilitate data entry".

Numbers don't have leading zeroes, so if you try to set a numeric value that does have leading zeroes (such as a telephone number) then these will be normally be lost as the value is cast to a number, so "01513789642" will be displayed as 1513789642.

There are two ways you can force PHPExcel to override this behaviour.

Firstly, you can set the datatype explicitly as a string so that it is not converted to a number.

// Set cell A8 with a numeric value, but tell PHPExcel it should be treated as a string
$objPHPExcel->getActiveSheet()->setCellValueExplicit(
    'A8', 
    "01513789642",
    PHPExcel_Cell_DataType::TYPE_STRING
);

Alternatively, you can use a number format mask to display the value with leading zeroes.

// Set cell A9 with a numeric value
$objPHPExcel->getActiveSheet()->setCellValue('A9', 1513789642);
// Set a number format mask to display the value as 11 digits with leading zeroes
$objPHPExcel->getActiveSheet()->getStyle('A9')
    ->getNumberFormat()
    ->setFormatCode(
        '00000000000'
    );

With number format masking, you can even break up the digits into groups to make the value more easily readable.

// Set cell A10 with a numeric value
$objPHPExcel->getActiveSheet()->setCellValue('A10', 1513789642);
// Set a number format mask to display the value as 11 digits with leading zeroes
$objPHPExcel->getActiveSheet()->getStyle('A10')
    ->getNumberFormat()
    ->setFormatCode(
        '0000-000-0000'
    );

07-simple-example-1.png

Note that not all complex format masks such as this one will work when retrieving a formatted value to display "on screen", or for certain writers such as HTML or PDF, but it will work with the true spreadsheet writers (Excel2007 and Excel5).

Setting a range of cells from an array

It is also possible to set a range of cell values in a single call by passing an array of values to the fromArray() method.

$arrayData = array(
    array(NULL, 2010, 2011, 2012),
    array('Q1',   12,   15,   21),
    array('Q2',   56,   73,   86),
    array('Q3',   52,   61,   69),
    array('Q4',   30,   32,    0),
);
$objPHPExcel->getActiveSheet()
    ->fromArray(
        $arrayData,  // The data to set
        NULL,        // Array values with this value will not be set
        'C3'         // Top left coordinate of the worksheet range where
                     //    we want to set these values (default is A1)
    );

07-simple-example-2.png

If you pass a 2-d array, then this will be treated as a series of rows and columns. A 1-d array will be treated as a single row, which is particularly useful if you're fetching an array of data from a database.

$rowArray = array('Value1', 'Value2', 'Value3', 'Value4');
$objPHPExcel->getActiveSheet()
    ->fromArray(
        $rowArray,   // The data to set
        NULL,        // Array values with this value will not be set
        'C3'         // Top left coordinate of the worksheet range where
                     //    we want to set these values (default is A1)
    );

07-simple-example-3.png

If you have a simple 1-d array, and want to write it as a column, then the following will convert it into an appropriately structured 2-d array that can be fed to the fromArray() method:

$rowArray = array('Value1', 'Value2', 'Value3', 'Value4');
$columnArray = array_chunk($rowArray, 1);
$objPHPExcel->getActiveSheet()
    ->fromArray(
        $columnArray,   // The data to set
        NULL,           // Array values with this value will not be set
        'C3'            // Top left coordinate of the worksheet range where
                        //    we want to set these values (default is A1)
    );

07-simple-example-4.png

Retrieving a cell value by coordinate

To retrieve the value of a cell, the cell should first be retrieved from the worksheet using the getCell() method. A cell's value can be read using the getValue() method.

// Get the value fom cell A1
$cellValue = $objPHPExcel->getActiveSheet()->getCell('A1')
    ->getValue();

This will retrieve the raw, unformatted value contained in the cell.

If a cell contains a formula, and you need to retrieve the calculated value rather than the formula itself, then use the cell's getCalculatedValue() method. This is further explained in .

// Get the value fom cell A4
$cellValue = $objPHPExcel->getActiveSheet()->getCell('A4')
    ->getCalculatedValue();

Alternatively, if you want to see the value with any cell formatting applied (e.g. for a human-readable date or time value), then you can use the cell's getFormattedValue() method.

// Get the value fom cell A6
$cellValue = $objPHPExcel->getActiveSheet()->getCell('A6')
    ->getFormattedValue();

Setting a cell value by column and row

Setting a cell value by coordinate can be done using the worksheet's setCellValueByColumnAndRow() method.

// Set cell B5 with a string value
$objPHPExcel->getActiveSheet()->setCellValueByColumnAndRow(1, 5, 'PHPExcel');

Note that column references start with '0' for column 'A', rather than from '1'.

Retrieving a cell value by column and row

To retrieve the value of a cell, the cell should first be retrieved from the worksheet using the getCellByColumnAndRow method. A cell’s value can be read again using the following line of code:

// Get the value fom cell B5
$cellValue = $objPHPExcel->getActiveSheet()->getCellByColumnAndRow(1, 5)
    ->getValue();

If you need the calculated value of a cell, use the following code. This is further explained in .

// Get the value fom cell A4
$cellValue = $objPHPExcel->getActiveSheet()->getCellByColumnAndRow(0, 4)
    ->getCalculatedValue();

Retrieving a range of cell values to an array

It is also possible to retrieve a range of cell values to an array in a single call using the toArray(), rangeToArray() or namedRangeToArray() methods.

$dataArray = $objPHPExcel->getActiveSheet()
    ->rangeToArray(
        'C3:E5',     // The worksheet range that we want to retrieve
        NULL,        // Value that should be returned for empty cells
        TRUE,        // Should formulas be calculated (the equivalent of getCalculatedValue() for each cell)
        TRUE,        // Should values be formatted (the equivalent of getFormattedValue() for each cell)
        TRUE         // Should the array be indexed by cell row and cell column
    );

These methods will all return a 2-d array of rows and columns. The toArray() method will return the whole worksheet; rangeToArray() will return a specified range or cells; while namedRangeToArray() will return the cells within a defined named range.

Looping through cells

Looping through cells using iterators

The easiest way to loop cells is by using iterators. Using iterators, one can use foreach to loop worksheets, rows within a worksheet, and cells within a row.

Below is an example where we read all the values in a worksheet and display them in a table.

$objReader = PHPExcel_IOFactory::createReader('Excel2007');
$objReader->setReadDataOnly(TRUE);
$objPHPExcel = $objReader->load("test.xlsx");

$objWorksheet = $objPHPExcel->getActiveSheet();

echo '<table>' . PHP_EOL;
foreach ($objWorksheet->getRowIterator() as $row) {
    echo '<tr>' . PHP_EOL;
    $cellIterator = $row->getCellIterator();
    $cellIterator->setIterateOnlyExistingCells(FALSE); // This loops through all cells,
                                                       //    even if a cell value is not set.
                                                       // By default, only cells that have a value 
                                                       //    set will be iterated.
    foreach ($cellIterator as $cell) {
        echo '<td>' . 
             $cell->getValue() . 
             '</td>' . PHP_EOL;
    }
    echo '</tr>' . PHP_EOL;
}
echo '</table>' . PHP_EOL;

Note that we have set the cell iterator's setIterateOnlyExistingCells() to FALSE. This makes the iterator loop all cells within the worksheet range, even if they have not been set.

The cell iterator will return a NULL as the cell value if it is not set in the worksheet. Setting the cell iterator's setIterateOnlyExistingCells() to FALSE will loop all cells in the worksheet that can be available at that moment. This will create new cells if required and increase memory usage! Only use it if it is intended to loop all cells that are possibly available.

Looping through cells using indexes

One can use the possibility to access cell values by column and row index like (0,1) instead of 'A1' for reading and writing cell values in loops.

Note: In PHPExcel column index is 0-based while row index is 1-based. That means 'A1' ~ (0,1)

Below is an example where we read all the values in a worksheet and display them in a table.

$objReader = PHPExcel_IOFactory::createReader('Excel2007');
$objReader->setReadDataOnly(TRUE);
$objPHPExcel = $objReader->load("test.xlsx");

$objWorksheet = $objPHPExcel->getActiveSheet();
// Get the highest row and column numbers referenced in the worksheet
$highestRow = $objWorksheet->getHighestRow(); // e.g. 10
$highestColumn = $objWorksheet->getHighestColumn(); // e.g 'F'
$highestColumnIndex = PHPExcel_Cell::columnIndexFromString($highestColumn); // e.g. 5

echo '<table>' . "\n";
for ($row = 1; $row <= $highestRow; ++$row) {
    echo '<tr>' . PHP_EOL;
    for ($col = 0; $col <= $highestColumnIndex; ++$col) {
        echo '<td>' . 
             $objWorksheet->getCellByColumnAndRow($col, $row)
                 ->getValue() . 
             '</td>' . PHP_EOL;
    }
    echo '</tr>' . PHP_EOL;
}
echo '</table>' . PHP_EOL;

Alternatively, you can take advantage of PHP's "Perl-style" character incrementors to loop through the cells by coordinate:

$objReader = PHPExcel_IOFactory::createReader('Excel2007');
$objReader->setReadDataOnly(TRUE);
$objPHPExcel = $objReader->load("test.xlsx");

$objWorksheet = $objPHPExcel->getActiveSheet();
// Get the highest row number and column letter referenced in the worksheet
$highestRow = $objWorksheet->getHighestRow(); // e.g. 10
$highestColumn = $objWorksheet->getHighestColumn(); // e.g 'F'
// Increment the highest column letter
$highestColumn++;

echo '<table>' . "\n";
for ($row = 1; $row <= $highestRow; ++$row) {
    echo '<tr>' . PHP_EOL;
    for ($col = 'A'; $col != $highestColumn; ++$col) {
        echo '<td>' . 
             $objWorksheet->getCell($col . $row)
                 ->getValue() . 
             '</td>' . PHP_EOL;
    }
    echo '</tr>' . PHP_EOL;
}
echo '</table>' . PHP_EOL;

Note that we can't use a <= comparison here, because 'AA' would match as <= 'B', so we increment the highest column letter and then loop while $col != the incremented highest column.

Using value binders to facilitate data entry

Internally, PHPExcel uses a default PHPExcel_Cell_IValueBinder implementation (PHPExcel_Cell_DefaultValueBinder) to determine data types of entered data using a cell's setValue() method (the setValueExplicit() method bypasses this check).

Optionally, the default behaviour of PHPExcel can be modified, allowing easier data entry. For example, a PHPExcel_Cell_AdvancedValueBinder class is available. It automatically converts percentages, number in scientific format, and dates entered as strings to the correct format, also setting the cell's style information. The following example demonstrates how to set the value binder in PHPExcel:

/** PHPExcel */
require_once 'PHPExcel.php';

// Set value binder
PHPExcel_Cell::setValueBinder( new PHPExcel_Cell_AdvancedValueBinder() );

// Create new PHPExcel object
$objPHPExcel = new PHPExcel();

// ...
// Add some data, resembling some different data types
$objPHPExcel->getActiveSheet()->setCellValue('A4', 'Percentage value:');
// Converts the string value to 0.1 and sets percentage cell style
$objPHPExcel->getActiveSheet()->setCellValue('B4', '10%');

$objPHPExcel->getActiveSheet()->setCellValue('A5', 'Date/time value:');
// Converts the string value to an Excel datestamp and sets the date format cell style
$objPHPExcel->getActiveSheet()->setCellValue('B5', '21 December 1983');  

Creating your own value binder is easy.
When advanced value binding is required, you can implement the PHPExcel_Cell_IValueBinder interface or extend the PHPExcel_Cell_DefaultValueBinder or PHPExcel_Cell_AdvancedValueBinder classes.


source : https://github.com/PHPOffice/PHPExcel/blob/develop/Documentation/markdown/Overview/07-Accessing-Cells.md

댓글