Separate names with a comma.
Comments in 'Plugin Development' started by JackboyPlay, Mar 1, 2016.
How can I round something like 3,383874625143 to 3,4?
what do you mean with round
Since you know it is called round, you should have no difficulty finding out https://php.net/round
@PEMapModder thanks
PHP: $w = 1,3837474774737;$n = round($w, 1);// 1,4
$w = 1,3837474774737;$n = round($w, 1);// 1,4