Tutorials Point


  Learning PHP
  Advanced PHP
  PHP Function Reference
  PHP Useful Resources
  Selected Reading

© 2011 TutorialsPoint.COM


  Home     References     Discussion Forums     About TP  

PHP Function end()


previous

Syntax

end ( $array );

Definition and Usage

The end() function advances array's internal pointer to the last element, and returns its value.

Paramters

ParameterDescription
arrayRequired. Specifies an array

Return Value

Returns the last element in an array.

Example

Try out following example:

<?php
$transport = array('foot', 'bike', 'car', 'plane');
$mode = current($transport); 
print "$mode <br />";
$mode = next($transport);  
print "$mode <br />";
$mode = current($transport)
print "$mode <br />";; 
$mode = prev($transport);  
print "$mode <br />";
$mode = end($transport);   
print "$mode <br />";
$mode = current($transport); 
print "$mode <br />";
?> 

This will produce following result:

foot
bike
bike
foot
plane
plane 

previous Printer Friendly



  

Advertisement

Online Image Processing

Indian Baby Names