Saturday, May 30, 2026
HomeLanguagesPHP | DsMap hasKey() Function

PHP | Ds\Map hasKey() Function

The Ds\Map::hasKey() function in PHP is used to check whether a given Key is present in the Map object or not. It accepts the key to be checked as a parameter and return True if the key is present in the Map otherwise it returns False.

Syntax:

bool public Ds\Map::hasKey ( mixed $key )

Parameter: It accepts a Key to be checked as a parameter. The key is of the mixed type that is it can be a string or an integer or any other type of value.

Return value: This function returns a boolean value True or False based on whether the given key is present in the Map or not.

Below program illustrate the Ds\Map::hasKey() function of Ds\Map:

Program 1:




<?php
// PHP program to illustrate the hasKey()
// function of Ds\map
  
// Creating a Map
$map = new \Ds\Map(["1" => 5, 
            "2" => 10, "3" => 15]);
  
// check if the key "1" is present in the Map
var_dump($map->hasKey("1"));
  
?>


Output:

bool(true)

Program 2:




<?php
// PHP program to illustrate the hasKey()
// function of Ds\map
  
// Creating a Map
$map = new \Ds\Map(["Geeks" => "1", 
            "for" => "2", "Geeks" => "3"]);
  
// Check if the key "Geeks" is 
// present in the Map
var_dump($map->hasKey("Geeks"));
  
?>


Output:

bool(true)

Reference: http://php.net/manual/en/ds-map.clear.php

RELATED ARTICLES

2 COMMENTS

Most Popular

Dominic
32514 POSTS0 COMMENTS
Milvus
131 POSTS0 COMMENTS
Nango Kala
6893 POSTS0 COMMENTS
Nicole Veronica
12012 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12107 POSTS0 COMMENTS
Shaida Kate Naidoo
7016 POSTS0 COMMENTS
Ted Musemwa
7262 POSTS0 COMMENTS
Thapelo Manthata
6975 POSTS0 COMMENTS
Umr Jansen
6963 POSTS0 COMMENTS