Skip to content

Instantly share code, notes, and snippets.

View gintsmurans's full-sized avatar
👏
javascript

Gints Murāns gintsmurans

👏
javascript
View GitHub Profile
@gintsmurans
gintsmurans / Functions.php
Last active February 6, 2016 11:02
Various useful php functions
<?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)