I have a date in this format 2068-06-15. I want to get the year from the date, using php functions. Could someone please suggest how this could be done.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
The DateTime class does not use an unix timestamp internally, so it han handle dates before 1970 or after 2038. |
|||
|
|
|
You can use the
Note however that PHP can handle year upto 2038 If your date is always in that format, you can also get the year like this:
|
|||||||||||
|
|
Assuming you have the date as a string (sorry it was unclear from your question if that is the case) could split the string on the - characters like so:
|
|||||
|
