if i have a date and i want to extract the year, the month, etc in PHP5, how should i proceed?

if i do

 $y = date('Y',$sale->end);  

it doesn't work...

link|improve this question

2  
what is $sale? – Neal Mar 30 '11 at 17:13
4  
what is $sale->end? Function date() works with unix timestamps only. So if it's a string like '2011-03-12' you have to convert it to timestamped value. – aveic Mar 30 '11 at 17:14
Are you asking which options to pass to date? That's all given in the PHP Manual: php.net/manual/en/function.date.php – Gordon Mar 30 '11 at 17:24
feedback

2 Answers

up vote 3 down vote accepted

If $sale->end is a valid datestamp, pass it through strtotime() like so:

$y = date('Y', strtotime($sale->end));
link|improve this answer
feedback

As jnpcl indicated, if $sale->end holds a valid datestamp you can do the following:

list($year,$month,$day,$hour,$minute,$second)=explode('-',date('Y-m-d-h-i-s',strtotime($sale->end)));
link|improve this answer
+1 for expanding the answer to get the other values – jnpcl Mar 30 '11 at 20:49
feedback

Your Answer

 
or
required, but never shown

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