Open In App

PHP stristr() Function

Last Updated : 22 Jun, 2023
Improve
Improve
Like Article
Like
Save
Share
Report

The stristr() function is a built-in function in PHP. It searches for the first occurrence of a string inside another string and displays the portion of the latter starting from the first occurrence of the former in the latter (before if specified). This function is case-insensitive.
Syntax :

stristr( $string, $search, $before )

Parameters : This function accepts three parameters as shown in the above syntax out of which the first two parameters must be supplied and the third one is optional. All of these parameters are described below:

  • $string : It is a mandatory parameter which specifies the string to be searched.
  • $search : It is a mandatory parameter which specifies the string to search for. If this parameter is a number, it will search for the character matching the ASCII value of the number
  • $before : It is an optional parameter. It specifies a boolean value whose default is false. If set to true, it returns the part of the string before the first occurrence of the search parameter.

Return Value : The function returns the rest of the string (from the matching point), or FALSE, if the string to search for is not found.

Examples:

Input : $string = "Hello world!", $search = "WORLD"
Output : world!

Input : $string = "Geeks for Geeks!", $search = "K"
Output : ks for Geeks!

Below programs illustrate the stristr() function in PHP :

Program 1: In this program we will display the portion of $string from the first occurrence of $search.




<?php
echo stristr("Geeks for Geeks!", "K");
?>
  


Output:

ks for Geeks! 

Program 2: In this program we will display the portion of $string before the first occurrence of $search.




<?php
echo stristr("Geeks for Geeks!", "K", true);
?>
   
  


Output:

Gee

Program 3: In this program we will pass an integer as $search.




<?php
  $string = "Geeks";
  echo stristr($string, 101); // 101 is ASCII value of lowercase e
?>
   
  


Output:

eeks

Reference:
http://php.net/manual/en/function.stristr.php



Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads