1.

What will be the output of the following PHP code?
<?php
$num = 10120;
$num1 = (array) $num;
echo $num1[0];
?>

A. 10120
B. Error
C. 101
D. 120
E. None of these
Answer» B. Error


Discussion

No Comment Found

Related MCQs