sprintf outcome problem - Stack Overflow most recent 30 from stackoverflow.com 2009-11-26T17:12:18Z http://stackoverflow.com/feeds/question/722150 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/722150/sprintf-outcome-problem 1 sprintf outcome problem Ryan 2009-04-06T16:12:07Z 2009-04-06T16:33:21Z <p>Here is my code:</p> <pre><code>&lt;?php $variable1 = 00001; $variable2 = (sprintf('%04d', $variable1 + 1)); echo $variable2; ?&gt; </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#722157 7 Answer by Trent for sprintf outcome problem Trent 2009-04-06T16:13:58Z 2009-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#722159 4 Answer by Rich for sprintf outcome problem Rich 2009-04-06T16:14:57Z 2009-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#722219 1 Answer by D.Shawley for sprintf outcome problem D.Shawley 2009-04-06T16:33:21Z 2009-04-06T16:33:21Z <p>A more interesting question is why does the following print '0009' instead of '0011'?</p> <pre><code>&lt;?php $var = 0010; $str = sprintf('%04d', $var+1); echo $str; ?&gt; </code></pre> <p>So why are you using octal representation anyway? I'm just curious.</p>