Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialJosh Bailey
6,593 PointsChallenge task not admitting my function works
<?php
function valid_sql_date($date) { $datematch = explode('-',$date); if ( (strlen($datematch[0]) != 4) || (strlen($datematch[1]) != 2) || (strlen($datematch[2]) != 2) || (!checkdate($datematch[2], $datematch[1], $datematch[0])) ) { return false; } else { return true; } } $d = "1996-08-08"; echo var_dump(valid_sql_date($d));
This is my code. Works in the preview, returns bool(true), and false if I enter an invalid date. So why wont the challenge accept it?
<?php
function valid_sql_date($date) {
$datematch = explode('-',$date);
if ( (strlen($datematch[0]) != 4) || (strlen($datematch[1]) != 2) || (strlen($datematch[2]) != 2)
|| (!checkdate($datematch[2], $datematch[1], $datematch[0])) ) {
return false;
} else {
return true;
}
}
$d = "1996-08-08";
echo var_dump(valid_sql_date($d));
2 Answers
KRIS NIKOLAISEN
54,971 PointsFrom the PHP docs on checkdate
checkdate ( int $month , int $day , int $year ) : bool
If the date is in format YYYY-MM-DD then you have the day and month reversed. Try:
(!checkdate($datematch[1], $datematch[2], $datematch[0]))
Josh Bailey
6,593 Pointsoh of course the checkdate function is month, day, year .... I'm from the UK and just assumed the checkdate function was day, month, year .... thanks for this