PHP Programing language

adplus-dvertising
array_current() and array_pos() Function in PHP
Previous Home Next
adplus-dvertising

array_current()

The current() function returns the value of the current element in an array.

Syntax:
current(array)

In above syntax, "array" specifies the array to use

Example:

<?php
$vehicle = array("Car", "Scooter", "Motorcycle", "Truck");
echo current($vehicle)."<br>";
?>

Output:

Car

array_pos()

The pos() function returns the value of the current element in an array.

Syntax:
pos(array)

In above syntax, "array" specifies the array to use.

Example:

<?php
$vehicle = array("Car", "Scooter", "Motorcycle", "Truck");
echo pos($vehicle)."<br>";
?>

Output:

Car

Previous Home Next