Jump to content

[SOLVED] From 2007-11-07 to just 2007


globex

Recommended Posts

I have a variable with a date, for example: 2007-11-07

I want to just get the year, in this case: 2007.

 

Is there a way to do this with some function? The only way I can figure it out is to to use substr to remove the last 6 digits. But then the variable is no longer a number, but a string and I can't perform operands on it. In which case is there a way to convert a string to an integer?

Link to comment
Share on other sites

<?php
$v = '2007-11-07';
$d = date("Y",strtotime($v));
echo $d - 1;?>

 

works fine for me.

 

What are you attempting to do. If you want to get the previous year, you can do:

<?php
$v = '2007-11-07';
$d = date("Y",strtotime($v . '-1 year'));
echo $d;
?>

 

Ken

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.