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

Justin Townsend
Justin Townsend
4,720 Points

PHP comparing

How am I suppose to equal these values if I'm not allowed to use var_dump()??

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

1 Answer

Steven Parker
Steven Parker
229,670 Points

The instructions say to "assign the results to $isIdentical", you won't need to output anything. The results of a comparison can be assigned to a variable just like a simple value can (and the entire statement can go on one line).

And the instructions also say to compare for "identical (equal AND of the same type)", so remember to use the special identity comparison operator (hint: it has more characters than the simple equality operator).