MastodonHelp/web/lib/realfloat.php

5 lines
66 B
PHP

<?php
function rf($num) {
return str_replace(',','.',$num);
}
?>