stristr(): finding first occurrence of a sting

echo stristr($haystack,$needle,$before);
$haystack
Required: Input string ( main string for searching )
$needle
Required: used to search the first occurrence inside Input string
$before
Optional: default FALSE, if set to TRUE then output returns the string before the first occurrence of $needle ( excluding the $needle )
Output is the part of string after the needle ( if $before is FALSE ) or before the needle. FALSE is returned if matching is not found.

This is case in-sensitive search. Use strstr() for case sensitive search

Example 1 of strstr()

$haystack="myuserid@example.com";
$needle="@";
echo stristr($haystack,$needle,false);// @example.com
Output is
@example.com

Example 2 of strstr()

$haystack="myuserid@example.com";
$needle="@";
echo stristr($haystack,$needle,true);// myuserid
Output is
myuserid

Example 3 of strstr()

$haystack="Welcome to plus2net.com to learn PHP";
$needle="TO";
echo stristr($haystack,$needle);// to plus2net.com to learn PHP
Output is
to plus2net.com to learn PHP

Uses of strstr

We can find out existence of a word or combination of words in a string. For example we don't want some words to be posted by the user while submitting any message or text to the system. We can check the existence of the word by using stristr() function and know the presence of the string. This is case insensitive checking.

For a case sensitive checking we can use strstr function

stristr function is used to check the presence of https:// in the posted message. Or it can be checked the presence of <a in the posted string to identify a link. Here is the syntax of this function.

string stristr (main string , checking string)

This function returns true if the checked string is found within the main string. Now here is a code which uses stristr function and returns true after checking the word.
$main_string="This is a test string <a href=https://www.plus2net.com>with a link</a> to plus2net";
if(stristr($main_string,"https://")){
echo "String contains a link or the text https:// inside it ";}
else {
echo "String does not contains a link or the text https:// inside it ";}
We can also use split command to get the domain part from email address.

Searching Blank space inside a string

$string='first second';
if (stristr($string,' ')) {
echo " There is blank space present inside the string ";
}else{
echo " There is NO blank space present inside the string ";
}
The output is
 There is blank space present inside the string

Subscribe to our YouTube Channel here


Subscribe

* indicates required
Subscribe to plus2net

    plus2net.com




    PHP String Functions

    Post your comments , suggestion , error , requirements etc here .




    We use cookies to improve your browsing experience. . Learn more
    HTML MySQL PHP JavaScript ASP Photoshop Articles FORUM . Contact us
    ©2000-2023 plus2net.com All rights reserved worldwide Privacy Policy Disclaimer