Open In App
Related Articles

PHP | Ds\Vector contains() Function

Improve Article
Improve
Save Article
Save
Like Article
Like

The Ds\Vector::contains() function is an inbuilt function in PHP which is used to check the vector contains given value or not.

Syntax:

bool public Ds\Vector::contains( $values )

Parameters: This function accepts a single parameter $values which contains single/many values.

Return Value: This function returns true if the given value exists, false otherwise.

Below programs illustrate the Ds\Vector::contains() function in PHP:

Program 1:




<?php
  
// Create a vector
$vector = new \Ds\Vector([1, 2, 3, 4, 5]);
  
// Use contains() function to check
// existence of vector elements
var_dump($vector->contains(1));
  
var_dump($vector->contains(1, 2));
  
var_dump($vector->contains(10));
  
?> 


Output:

bool(true)
bool(true)
bool(false)

Program 2:




<?php
  
// Create a vector
$vector = new \Ds\Vector(["geeks", "for", "geeks"]);
  
// Use contains() function to check
// existence of vector elements
var_dump($vector->contains("geeks"));
  
var_dump($vector->contains("geeks", "for"));
  
var_dump($vector->contains("GfG"));
  
?>


Output:

bool(true)
bool(true)
bool(false)

Reference: http://php.net/manual/en/ds-vector.contains.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 : 22 Aug, 2019
Like Article
Save Article
Similar Reads
Related Tutorials