Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to add 0's in front of the single digit numbers.

for($i_y=1950; $i<=2012; $i++) $years[]=$i_y;
for($i_m=1; $i<=12; $i++) $months[]=$i_m;
for($i_d=1; $i<=31; $i++) $days[]=$i_d;

tried

for($i_y=1950; $i<=2012; $i++) $years[]=$i_y;
for($i_m=01; $i<=12; $i++) $months[]=$i_m;
for($i_d=01; $i<=31; $i++) $days[]=$i_d;

it wasn't that simple, whats the correct way?

it's for a select options

Example

for($i=1; $i<=50; $i++)
$months=$i;

echo '<select name="month" select id="month">';
echo '<option value="">' . __("0" ) . '</option>';
foreach($months as $month){
$selected = '';
echo '<option value="' . $month . '" ' . $selected . '>' . $month . '</option>';
                    }
echo '</select>';
share|improve this question
1  
Can't really zero-pad actual numeric values. Is there a reason you need to do this? – Tieson T. Apr 22 '12 at 18:47
@TiesonT. Yea they are options for a selection box and the format it needs to be saved is is 2012-04-22. it can't be 2012-4-22 – Craig Apr 22 '12 at 18:53
You can zero-pad the 'number' you're storing in the array, but to use it as an iterator in your for loop it needs to be a number. Use @kuba's method below: $months[]=str_pad( $i_m, 2, '0', STR_PAD_LEFT ); – Tieson T. Apr 22 '12 at 18:57
@TiesonT. Thank you It worked perfectly! – Craig Apr 22 '12 at 19:02

2 Answers

up vote 5 down vote accepted

use str_pad:

$x = "1";
echo $x; // will output "1"
$y = str_pad($x, 2, "0", STR_PAD_LEFT);
echo $y; // will output "01"
share|improve this answer
Thanks for the fast response, I'm using a select options, where would I implement that? – Craig Apr 22 '12 at 18:49
show me how you generate the options and we will tell you – kuba Apr 22 '12 at 18:52
I updated the question to show it; however @Tieson T already showed me how. Thanks for your answer! – Craig Apr 22 '12 at 19:03
@Craig kuba deserves 100% of the credit - I just took you that last step. Nice work, kuba. :) – Tieson T. Apr 22 '12 at 19:07

If you're trying to format a date like '2012-04-01' you can do this with sprintf():

 $formatted_date = sprintf("%04d-%02d-%02d", $year, $month, $day);
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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