Q. What will be the output of the following PHP code?
Code:
<?php $x = true; var_dump($x); ?>
β
Correct Answer: (C)
bool(true)
<?php $x = true; var_dump($x); ?>
You must be Logged in to update hint/solution