1.

What will be the output of the following PHP code?
<?php
$num = array ("Zero","One", "Two", "Three", "Four","Five");
$subset = array_splice ($num, 3);
print_r ($subset);
?>

A. Error
B. Nothing
C. None of these
Answer» B. Nothing


Discussion

No Comment Found

Related MCQs