ExamVeda
Login
Home
This question belongs to PHP Arrays
Arrays
?

What will be the output of the following PHP code?
<?php
$a = array("red", "green", "blue");
array_pop($a);
print_r($a);
?>

Answer & Solution
Correct Answer: Option A
The array_pop() function deletes the last element of an array.
Examveda
Question posted by Examveda
Community

Join the Discussion

No comments yet Be the first to discuss this question.