PHP - Type Handling
Consider this PHP code snippet:
Why might this code produce an unexpected result?
$x = '5 cats';
$y = 3;
$result = $x - $y;
echo $result;
Why might this code produce an unexpected result?
