PHP - Type Handling
Consider this PHP code snippet:
What is the problem with this code?
$value = true;
if (typeof($value) === 'boolean') {
echo 'Boolean type';
} else {
echo 'Not boolean';
}
What is the problem with this code?
