Examveda
Examveda

What will be the output of the following PHP code ?
<?php
$people = array("Peter", "Susan", "Edmund", "Lucy");
echo pos($people);
?>

A. Lucy

B. Peter

C. Susan

D. Edmund

Answer: Option B

Solution(By Examveda Team)

The pos() function returns the value of the current element in an array, and since no operation has been done, the current element is the first element.

This Question Belongs to PHP >> Arrays

Join The Discussion

Related Questions on Arrays