vote up 1 vote down star

I want to count with 0. I means if

$x = 002 $y = 999

Now I want to count it by keep the 00.

for ( $i = $x ; $i <= $y; $i++ )
{
echo $i;
}

but it echo - 002, 3, 4, 5

I want it to count by keep the 00. as like 005, 006, 007, 008, 009, 010, 011, 012.

Please help me. I need it. Thanks

flag

You must be careful when you add leading zeros to your variables. O at the beginning makes PHP use the value as a octal number. It doesn't make any difference for 00-07 but you may get unexpected results for other values. So you should initialize your $x simply as 2, and add leading zeros when you will be printing the output. – RaYell Sep 17 at 13:38

9 Answers

vote up 11 vote down check
for ($i = $x ; $i <= $y; $i++)
{
    printf('%03d', $i);
}
link|flag
Thanks but it may make error cause the length of $x is dynamic. Though I fixed it with $size = strlen ($x); for ($i = $x ; $i <= $y; $i++) { printf ( '%0'.$size.'d', $i ); } But is it the right way to do this? I thought I need nested loop to make it work. But Working well. And thank you. – SHAKTI Sep 16 at 6:57
Yes, what you described with dynamic size is ok as well. – RaYell Sep 16 at 9:11
The $i, $x and $y in the loop should be normal numbers (1, 2, ...) not zero-padded (001, 002, ...). Though they get converted to regular numbers after the first iteration anyway. – DisgruntledGoat Sep 16 at 10:52
vote up 1 vote down

str_pad method:

echo str_pad($i, 3, '0', STR_PAD_LEFT);
link|flag
vote up 3 vote down

use printf:

for ( $i = $x ; $i <= $y; $i++ ) {
    printf("%03d", $i);
}
link|flag
vote up 1 vote down

Try using number formats

Refer to here: http://us2.php.net/manual/en/function.number-format.php

Just scroll through the bottom.

Best regards

link|flag
vote up -3 vote down

You cannot do that if $i is an integer. The first time you assign $i it is stored as a string, after you do $i++ its converted to an integer.

If you must maintain the original format, treat $i as a string and do all arithmetic on $i using custom functions, not the build in integer arithmetic.

The easiest solution is to let $i be an integer and prepend leading zeros when you output $i.

link|flag
vote up 4 vote down

The idea is you don't count it like that, you just show it like that. I hope you understand that 00 is just for presentation only. Cheers.

link|flag
vote up 3 vote down

printf("%03d", $i);

link|flag
vote up 3 vote down

try

   printf('%03d', $i)

and link to the manual

cheers

link|flag
vote up 4 vote down

(s)printf is your friend for this one, there's plenty of useful examples on the manual-page, but you'd want:

printf('%03d', $i);

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.