A
Q. What is the result of the following PHP code?
Code:
<?php
$a = array("Alex", "Bob", "Emily");
array_pop($a);
print_r($a);
?>
$a = array("Alex", "Bob", "Emily");
array_pop($a);
print_r($a);
?>
- Correct Answer - Option(C)
- Views: 19
- Filed under category PHP
- Hashtags:
Discusssion
Login to discuss.