This simplify code, increase readability and improve the function signature for API users.
		
			
				
	
	
		
			73 lines
		
	
	
		
			755 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			73 lines
		
	
	
		
			755 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
return [
 | 
						|
    [
 | 
						|
        '#VALUE!',
 | 
						|
        null,
 | 
						|
    ],
 | 
						|
    [
 | 
						|
        '#VALUE!',
 | 
						|
        '',
 | 
						|
    ],
 | 
						|
    [
 | 
						|
        65,
 | 
						|
        'ABC',
 | 
						|
    ],
 | 
						|
    [
 | 
						|
        49,
 | 
						|
        123,
 | 
						|
    ],
 | 
						|
    [
 | 
						|
        84,
 | 
						|
        true,
 | 
						|
    ],
 | 
						|
    [
 | 
						|
        68,
 | 
						|
        'DEF',
 | 
						|
    ],
 | 
						|
    [
 | 
						|
        80,
 | 
						|
        'PhpSpreadsheet',
 | 
						|
    ],
 | 
						|
    [
 | 
						|
        49,
 | 
						|
        1.5,
 | 
						|
    ],
 | 
						|
    [
 | 
						|
        77,
 | 
						|
        'Mark Baker',
 | 
						|
    ],
 | 
						|
    [
 | 
						|
        109,
 | 
						|
        'mark baker',
 | 
						|
    ],
 | 
						|
    [
 | 
						|
        163,
 | 
						|
        '£125.00',
 | 
						|
    ],
 | 
						|
    [
 | 
						|
        12103,
 | 
						|
        '⽇',
 | 
						|
    ],
 | 
						|
    [
 | 
						|
        0x153,
 | 
						|
        'œ',
 | 
						|
    ],
 | 
						|
    [
 | 
						|
        0x192,
 | 
						|
        'ƒ',
 | 
						|
    ],
 | 
						|
    [
 | 
						|
        0x2105,
 | 
						|
        '℅',
 | 
						|
    ],
 | 
						|
    [
 | 
						|
        0x2211,
 | 
						|
        '∑',
 | 
						|
    ],
 | 
						|
    [
 | 
						|
        0x2020,
 | 
						|
        '†',
 | 
						|
    ],
 | 
						|
];
 |