sprintf outcome problem - Stack Overflow most recent 30 from stackoverflow.com2009-11-26T17:12:18Zhttp://stackoverflow.com/feeds/question/722150http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/722150/sprintf-outcome-problem1sprintf outcome problemRyan2009-04-06T16:12:07Z2009-04-06T16:33:21Z
<p>Here is my code:</p>
<pre><code><?php
$variable1 = 00001;
$variable2 = (sprintf('%04d', $variable1 + 1));
echo $variable2;
?>
</code></pre>
<p>How come the outcome of this code is "0002" and not "00002"? in other words it is missing a 0.</p>
http://stackoverflow.com/questions/722150/sprintf-outcome-problem/722157#7221577Answer by Trent for sprintf outcome problemTrent2009-04-06T16:13:58Z2009-04-06T16:13:58Z<p>The 4 in %04d sets the total width of the printed value</p>
http://stackoverflow.com/questions/722150/sprintf-outcome-problem/722159#7221594Answer by Rich for sprintf outcome problemRich2009-04-06T16:14:57Z2009-04-06T16:14:57Z<p>the number in the first parameter is the "total number of characters" not the number of zeroes to use in padding. What you are looking for is %05d instead.</p>
http://stackoverflow.com/questions/722150/sprintf-outcome-problem/722219#7222191Answer by D.Shawley for sprintf outcome problemD.Shawley2009-04-06T16:33:21Z2009-04-06T16:33:21Z<p>A more interesting question is why does the following print '0009' instead of '0011'?</p>
<pre><code><?php
$var = 0010;
$str = sprintf('%04d', $var+1);
echo $str;
?>
</code></pre>
<p>So why are you using octal representation anyway? I'm just curious.</p>