1.

What will be the output of the following PHP code?
<?php
$Country = array("INDIA", "USA", "ENGLAND");
array_pop($Country);
$Country1 = array("ISRAEL");
$Country = array_merge($Country, $Country1);
print_r($Country);
?>

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


Discussion

No Comment Found

Related MCQs