PHP - Type Handling
Given this PHP code:
What will be the output?
$values = [123, 3.14, "text", true];
$types = [];
foreach ($values as $v) {
$types[] = gettype($v);
}
print_r($types);
What will be the output?
