 8d76020590
			
		
	
	
		8d76020590
		
			
		
	
	
	
	
		
			
			Column indexes are always based on 1 everywhere in PhpSpreadsheet. This is consistent with rows starting at 1, as well as Excel function `COLUMN()`. It should also make it easier to reason about columns and rows and remove any doubts whether a specific method is expecting 0 based or 1 based indexes. Fixes #273 Fixes https://github.com/PHPOffice/PHPExcel/issues/307 Fixes https://github.com/PHPOffice/PHPExcel/issues/476
		
			
				
	
	
		
			53 lines
		
	
	
		
			491 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			53 lines
		
	
	
		
			491 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| return [
 | |
|     [
 | |
|         'A',
 | |
|         1,
 | |
|     ],
 | |
|     [
 | |
|         'Z',
 | |
|         26,
 | |
|     ],
 | |
|     [
 | |
|         'AA',
 | |
|         27,
 | |
|     ],
 | |
|     [
 | |
|         'AB',
 | |
|         28,
 | |
|     ],
 | |
|     [
 | |
|         'AZ',
 | |
|         52,
 | |
|     ],
 | |
|     [
 | |
|         'BA',
 | |
|         53,
 | |
|     ],
 | |
|     [
 | |
|         'BZ',
 | |
|         78,
 | |
|     ],
 | |
|     [
 | |
|         'CA',
 | |
|         79,
 | |
|     ],
 | |
|     [
 | |
|         'IV',
 | |
|         256,
 | |
|     ],
 | |
|     [
 | |
|         'ZZ',
 | |
|         702,
 | |
|     ],
 | |
|     [
 | |
|         'AAA',
 | |
|         703,
 | |
|     ],
 | |
|     [
 | |
|         'BAA',
 | |
|         1379,
 | |
|     ],
 | |
| ];
 |