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.
feedback
|
The DateTime class does not use an unix timestamp internally, so it han handle dates before 1970 or after 2038. | |||
|
feedback
|
|
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:
| |||||||||||
feedback
|
|
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:
| |||||
feedback
|