The sprintf function it works as stringbuilder in .net or java
The sprintf() function writes a formatted string to a variable.
The arg1, arg2, ++ parameters will be inserted at percent (%) signs in the main string. This function works "step-by-step". At the first % sign, arg1 is inserted, at the second % sign, arg2 is inserted, etc.
sprintf(format,arg1,arg2,arg++)
this function returns value but printf prints the output
this function is very useful at the point of dynamic message sending
the below is the example
<?php
$number = 123;
$txt = sprintf("%f",$number);
echo $txt;
?>
$number = 123;
$txt = sprintf("%f",$number);
echo $txt;
?>
Formats reference:
Parameter | Description |
---|---|
format | Required. Specifies the string and how to format the variables in it.
Possible format values:
Additional format values. These are placed between the % and the letter (example %.2f):
Note: If multiple additional format values are used, they must be in the same order as above.
|
arg1 | Required. The argument to be inserted at the first %-sign in the format string |
arg2 | Optional. The argument to be inserted at the second %-sign in the format string |
arg++ | Optional. The argument to be inserted at the third, fourth, etc. %-sign in the format string |
0 comments:
Post a Comment