Copyright © tutorialspoint.com
| pos ( $array ); |
The pos() function is an alias of current() function and simply returns the value of the array element that's currently being pointed to by the internal pointer. It does not move the pointer in any way. If the internal pointer points beyond the end of the elements list, post() returns FALSE.
| Parameter | Description |
|---|---|
| array | Required. Specifies an array |
Returns the current element in an array.
Try out following example:
<?php
$transport = array('foot', 'bike', 'car', 'plane');
$mode = pos($transport);
print "$mode <br />";
?>
|
This will produce following result:
foot |
Copyright © tutorialspoint.com