Q. what is the output of below program?
Code:
<?php
$cars=array("Maruti","Honda","BMW");
echo strlen($cars);
?>
β
Correct Answer: (D)
Error
<?php
$cars=array("Maruti","Honda","BMW");
echo strlen($cars);
?>
You must be Logged in to update hint/solution