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 trialNathaniel Lozada
4,002 PointsDate function won’t accept answer even though I am sure it’s right.
It says that the date should return June 25, 2019.
The return of my code literally displays “Today is June 25, 2019”, exactly like it says up there. And I used the version with trailing zero, before you ask.
Yet it still tells me I am wrong. What is going on?
For reference, here is my code:
<?php
echo 'Today is ';
//Place your code below this comment
echo date('F' . " " . 'd' . ", " . 'Y')
?>
1 Answer
KRIS NIKOLAISEN
54,971 PointsAlthough there are a few answers that provide the specified date, and you have the right format characters, the challenge accepts a format of a single string without concatenation. Example #4 in the linked documentation shows some sample formats.
KRIS NIKOLAISEN
54,971 PointsKRIS NIKOLAISEN
54,971 PointsCan you post your code?