A
Q. What will be the output of the following PHP code?
Code:
<?php
$Laptops = array(
"MAC",
"Lenovo",
"Dell",
"HP"
);
echo gettype($Laptops);
?>
$Laptops = array(
"MAC",
"Lenovo",
"Dell",
"HP"
);
echo gettype($Laptops);
?>
- Correct Answer - Option(A)
- Views: 7
- Filed under category PHP
- Hashtags:
Discusssion
Login to discuss.