Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I started to learn PHP and have to find a mistake (maybe in this code):

if($newvalues["year"] != null)
   $newvalues["year"] = date("Y-m-d", strtotime($newvalues["year"]."-01-01"));

The new date has to be saved in the array "$newvalues", but when I press the save button, it doesn't save anything. Only if the textfield "year" is empty, the other items can be saved.

Can anyone help me, please? Thanks.

share|improve this question
Have you tried adding debugging code to that, so you can see all the values that your code is working with, and that the right part of the if statement is being triggered? – andrewsi Jun 25 '12 at 16:53
Your code works fine for me. – Madara Uchiha Jun 25 '12 at 16:54

1 Answer

up vote 2 down vote accepted

You're basically doing:

100 * 80 / 80

Just save it as

if($newvalues["year"] != null)
   $newvalues["year"] .= "-01-01";

Or better yet, represent it as a DateTime object:

$newvalues = array("year" => 2012);
if ($newvalues["year"] != null) {
    $newvalues["year"] = new DateTime("{$newvalues["year"]}-01-01");
}
var_dump($newvalues["year"]);

Using a DateTime object (And the DateTime family) gives you much better and more flexible control over your date/times.

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.