This simplify code, increase readability and improve the function signature for API users.
		
			
				
	
	
		
			45 lines
		
	
	
		
			529 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			45 lines
		
	
	
		
			529 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
return [
 | 
						|
    [
 | 
						|
        '1000',
 | 
						|
        '1000',
 | 
						|
    ],
 | 
						|
    [
 | 
						|
        '1000',
 | 
						|
        '1 000',
 | 
						|
    ],
 | 
						|
    [
 | 
						|
        '1000',
 | 
						|
        '$1 000',
 | 
						|
    ],
 | 
						|
    [
 | 
						|
        '#VALUE!',
 | 
						|
        '£1 000',
 | 
						|
    ],
 | 
						|
    [
 | 
						|
        '1.1',
 | 
						|
        '1.1',
 | 
						|
    ],
 | 
						|
    [
 | 
						|
        '1000.1',
 | 
						|
        '1 000.1',
 | 
						|
    ],
 | 
						|
    [
 | 
						|
        '#VALUE!',
 | 
						|
        '13 Monkeys',
 | 
						|
    ],
 | 
						|
    [
 | 
						|
        '41640',
 | 
						|
        '1-Jan-2014',
 | 
						|
    ],
 | 
						|
    [
 | 
						|
        '0.524259259259259',
 | 
						|
        '12:34:56',
 | 
						|
    ],
 | 
						|
    [
 | 
						|
        '0.11527777777778',
 | 
						|
        '2:46 AM',
 | 
						|
    ],
 | 
						|
];
 |