show/hide this revision's text 4 edited tags
show/hide this revision's text 3 intro and signature not appropriate or helpful for this site

Hey,

Here is my code:

<?php
$variable1 = 00001;
$variable2 = (sprintf('%04d', $variable1 + 1));
echo $variable2;
?>

How come the outcome of this code is "0002" and not "00002"? in other words it is missing a 0.

Thanks, Stanni

show/hide this revision's text 2 edited tags
show/hide this revision's text 1