5 lines
71 B
PHP
5 lines
71 B
PHP
<?php
|
|
function rf($num) {
|
|
return preg_replace('#\D#u','.',$num);
|
|
}
|
|
?>
|