Source for file common.php
Documentation is available at common.php 
 * This work is hereby released into the Public Domain.  
 * To view a copy of the public domain dedication,  
 * visit http://creativecommons.org/licenses/publicdomain/ or send a letter to  
 * Creative Commons, 559 Nathan Abbott Way, Stanford, California 94305, USA.  
 * @package linea21.externals  
 * Get the minimum of an array and ignore non numeric values  
        } while(count($array) >  0 and $min ===  NULL);  
        foreach($array as $value) {  
 * Get the maximum of an array and ignore non numeric values  
        } while(count($array) >  0 and $max ===  NULL);  
        foreach($array as $value) {  
 * Define file_put_contents() if needed  
 
 
        
       |