| Previous | Home | Next |
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:
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:
| Previous | Home | Next |