1.

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

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


Discussion

No Comment Found

Related MCQs