5 lines
66 B
PHP
5 lines
66 B
PHP
<?php
|
|
function rf($num) {
|
|
return str_replace(',','.',$num);
|
|
}
|
|
?>
|