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