Q. What will be the output of the following PHP code?
Code:
<?php
$Laptops = array(
"MAC",
"Lenovo",
"Dell",
"HP"
);
echo gettype($Laptops);
?>
β
Correct Answer: (A)
array