Home >Backend Development >PHP Tutorial >PHP function stristr() that searches for the first occurrence of a string in another string
Example
Find the first occurrence of "world" in "Hello world!" and return the rest of the string:
<?php echo stristr("Hello world!","WORLD"); ?>
Definition and usage
## The #stristr() function searches for the first occurrence of a string within another string. Note: This function is binary safe. Note: This function is not case sensitive. For case-sensitive searches, use the strstr() function. Syntaxstristr(string,search,before_search)
Description | |
Required. Specifies the string to be searched for. | |
Required. Specifies the string to be searched for. If the argument is a number, searches for characters that match the ASCII value for that number. | |
Optional. A Boolean value with a default value of "false". If set to "true", it will return the portion of the string preceding the first occurrence of the search parameter. |
Returns the remainder of the string (from the match point). Returns FALSE if the searched string is not found. | |
4+ | |
In PHP 5.3, new Added before_search parameter. |
In PHP 4.3, this function becomes binary safe. |
The above is the detailed content of PHP function stristr() that searches for the first occurrence of a string in another string. For more information, please follow other related articles on the PHP Chinese website!