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 trial

PHP PHP Basics PHP on the Web Date Function

Lucas Keiti
Lucas Keiti
1,976 Points

Difficulty to solve the challenge

I tried this script:

echo date(string $format[F, d, o]):string;

but it doesn't work.

What I got wrong? Thanks!

index.php
<?php
echo 'Today is ';
//Place your code below this comment

echo date(string $format[F, d, o]):string

?>

1 Answer

The date function from the documentation linked in the challenge:

date ( string $format [, int $timestamp = time() ] ) : string

Here string $format identifies a parameter, it's position and data type. It is not meant to be typed out when using the function. $timestamp is an optional parameter, as indicated by the brackets, and not used in this challenge. :string is the return type.

To use the function you specify date() with format characters enclosed in quotes as shown in examples on the page.

For example with the characters you have chosen above:

echo date('F d, o')

would display April 26, 2019. The challenge will want something else though but should be easy enough to get from here.