Open In App
Related Articles

PHP | Ds\Sequence find() Function

Improve Article
Improve
Save Article
Save
Like Article
Like

The Ds\Sequence::find() function is an inbuilt function in PHP which is used to find the value from the sequence. If the value present in the sequence then return its index value otherwise return false.

Syntax:

mixed abstract public Ds\Sequence::find ( mixed $value ) 

Parameter: This function accepts single parameter $value which need to check that it present in the sequence or not.

Return value: This function returns the index of value on success or False on failure.

Below programs illustrate the Ds\Sequence::find() function in PHP:

Program 1:




<?php
  
// Create new sequence
$seq new \Ds\Vector([21, 23, "p", "x"]);
  
// Use find() function
var_dump($seq->find("G"));
  
// Use find() function
var_dump($seq->find(21));
  
// Use find() function
var_dump($seq->find(10));
  
// Use find() function
var_dump($seq->find("x"));
  
// Use find() function
var_dump($seq->find("p"));
  
?>


Output:

bool(false)
int(0)
bool(false)
int(3)
int(2)

Program 2:




<?php
  
// Create new sequence
$seq new \Ds\Vector(["G", "E", "E",
        "K", "S", "1", "2", 1, 2, 3, 4]);
  
// Use find() function
var_dump($seq->find("G"));
  
// Use find() function
var_dump($seq->find(1));
  
// Use find() function
var_dump($seq->find(10));
  
// Use find() function
var_dump($seq->find("1"));
  
// Use find() function
var_dump($seq->find("k"));
  
// Use find() function
var_dump($seq->find("F"));
  
// Use find() function
var_dump($seq->find("4"));
  
?>


Output:

int(0)
int(7)
bool(false)
int(5)
bool(false)
bool(false)
bool(false)

Reference: http://php.net/manual/en/ds-sequence.find.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
Previous
Next
Similar Reads
Complete Tutorials