Answers for "php number two digits"

PHP
2

two digits after decimal point in php

echo round(520.34345, 2);   // 520.34
echo round(520.3, 2);       // 520.3
echo round(520, 2);         // 520
Posted by: Guest on May-31-2021
0

php show number 4 digit

echo str_pad( "1", 4, "0", STR_PAD_LEFT );
echo str_pad( "12", 4, "0", STR_PAD_LEFT );
Posted by: Guest on November-24-2021

Code answers related to "php number two digits"

Browse Popular Code Answers by Language