PHP Basics Learning Mode

What is the output from this script?

<?php
$a = true;
$b = false;
$ampBool = $a && $b;
$andBool = $a and $b;
var_dump($ampBool == $andBool);
?>