Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Roger Dailey
14,887 PointsHelp with challenge, not sure what I am doing wrong?
What am I doing wrong?
<?php
function valid_sql_date($date) {
//add code here
$dateMatch = explode('-',$date);
if(count($dateMatch) !=3
|| strlen($dateMatch[0]) !=4
|| strlen($dateMatch[1]) !=2
|| strlen($dateMatch[2]) !=2
|| !checkdate($dateMatch[0], $dateMatch[1], $dateMatch[2])) {
return false;
} else {
return true;
}
}
1 Answer

Serhii Lihus
6,351 PointsHi Roger!
I think that order of parameters in function
checkdate();
matters.
bool checkdate ( int $month , int $day , int $year )
If you output contents of your array after explode
print_r($dateMatch);
You will notice that
$dateMatch[0] - Year
$dateMatch[1] - month
$dateMatch[2] - date
In your case try following
checkdate($dateMatch[1], $dateMatch[2], $dateMatch[0]);
Hope this will help.
Best regards.