How do you format and output a number with leading zero's?
Answers were Sorted based on User's Feedback
Answer / mahesh
$d=450;
$d = str_pad($d,6,0,0);
echo $d;
OUT PUT
000450
| Is This Answer Correct ? | 8 Yes | 0 No |
Answer / pradeep
Using sprinf("%04d",$num);
The above function will return a number of length 4.
| Is This Answer Correct ? | 6 Yes | 1 No |
Answer / mahidhar
syntax:number_format("number","decimal places","string
seperator","string thousands seperator");
Example:number_format('1000',2,'.','')
| Is This Answer Correct ? | 6 Yes | 6 No |
does PHP support foreign key and Rollback?yes or not.if not then why. how will you done these concept in php?
1 Answers Avanigoradia, Primus Global,
What is difference between single quotes and double quotes in php?
What does the arrow mean in php?
What are the methods to submit form in php?
How do you define a constant in php?
Can php replace javascript?
How can we determine whether a variable is set?
How to make a class in php?
Difference between get and post method.
What is the meaning of symbol '$' in jquery?
What is isset in php form?
Which function would you use to merge two arrays in php?