This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Returns fixed floating number with precision of $precision. Replaces "," to "." and " " to "". | |
* | |
* @param $input mixed | |
* @param $precision int | |
* @return float | |
*/ | |
function fixFloat($input, $precision = -1) |