Monday 26 August 2013

PHP Function pos()

Syntax

pos ( $array );

Definition and Usage

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.

Paramters

ParameterDescription
arrayRequired. Specifies an array

Return Value

Returns the current element in an array.

Example

Try out following example:
<?php
$transport = array('foot', 'bike', 'car', 'plane');
$mode = pos($transport); 
print "$mode <br />";
?> 
This will produce following result:
foot

No comments:

Post a Comment