PHP Basics Learning Mode

You work as a Web Developer for Remote Inc. What will be the output when you try to run the script below?

<?php
    $b = false;
    if($b = true)
      print("true");
    else
      print("false");
?>