Where can I find documentation for the following code?
$a = .01 * rand(0, 100) >= .5; //I don't need doc for this line, its for generating a random boolean!
$b = "it was true!";
$c = "it was false!";
echo "Guess what, " . ( $a ? $b : $c ); // I need documentation for how this works!