MastodonHelp/web/lib/realfloat.php

5 lines
71 B
PHP

<?php
function rf($num) {
return preg_replace('#\D#u','.',$num);
}
?>