Question from the PHP - Fundamentals test

Compare two values with === operator in PHP

Medium

What is the output of the following code ?

function are_equal($a, $b) {
	if ($a === $b) {
		echo "$a is identical to $b\n";
	}
}
are_equal(1, 1);
are_equal(0.0, 0);
are_equal("a", "a");
are_equal(array(), array());
Author: ThéoStatus: PublishedQuestion passed 144 times
Edit
0
Community EvaluationsNo one has reviewed this question yet, be the first!