The Ds\Sequence::first() function is an inbuilt function in PHP which is used to return the first element from the sequence.
Syntax:
mixed abstract public Ds\Sequence::first ( void )
Parameter: This function does not accepts any parameter.
Return value: This function returns the first element from the sequence.
Below programs illustrate the Ds\Sequence::first() function in PHP:
Example 1:
<?php
$seq = new \Ds\Vector([10, 20, 13, 25]);
var_dump( $seq ->first());
$seq = new \Ds\Vector([ 'G' , 'e' , 'e' , 'k' , 's' ]);
var_dump( $seq ->first());
?>
|
Output:
int(10)
string(1) "G"
Example 2:
<?php
$seq = new \Ds\Vector([21, 23, 'p' , 'x' ]);
var_dump( $seq ->first());
$seq ->insert(0, "G" );
var_dump( $seq ->first());
?>
|
Output:
int(21)
string(1) "G"
Reference: http://php.net/manual/en/ds-sequence.first.php
Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape,
GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out -
check it out now!
Last Updated :
21 Aug, 2019
Like Article
Save Article