22 lines
		
	
	
		
			364 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			364 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| return [
 | |
|     [null, '#VALUE!'],
 | |
|     ['', '#VALUE!'],
 | |
|     ['ABC', 65],
 | |
|     [123, 49],
 | |
|     [true, 84],
 | |
|     ['DEF', 68],
 | |
|     ['PhpSpreadsheet', 80],
 | |
|     [1.5, 49],
 | |
|     ['Mark Baker', 77],
 | |
|     ['mark baker', 109],
 | |
|     ['£125.00', 163],
 | |
|     ['⽇', 12103],
 | |
|     ['œ', 0x153],
 | |
|     ['ƒ', 0x192],
 | |
|     ['℅', 0x2105],
 | |
|     ['∑', 0x2211],
 | |
|     ['†', 0x2020],
 | |
| ];
 | 
