/** * Changes the Precision for PHP configs that default to less than 16 */ public static function checkPrecision() { if (ini_get('precision') < 16) { Logger::notice(null, 'Changing PHP precision from ' . ini_get('precision') . ' to 16'); ini_set('precision', 16); } }