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 Daily Exercise Program True PHP

I think there's a bug in this exercise

I put this in for the 2nd challenge $a = 5; $isIdentical = var_dump($a==="5");

Your automatic checker says that it can't find $isIdentical however, the Workspace shows bool(false) as the result in the console Please advise...

index.php
<?php
$a = 5;
//Place your code below this comment
$isBoolean = true;
$isIdentical = var_dump($a === "5");
?>

I was overthinking the problem and used var_dump in it, since we had done that previously.

1 Answer

You are asked to compare the variable $a as identical (equal AND of the same type) as the string "5" and assign the results to $isIdentical. There is no mention of using var_dump. If you read the documentation for var_dump you will see there is no return value so there is nothing to assign.

The challenge just wants the straight assignment as described:

$isIdentical = $a === "5";