PHP function strchr() that searches for the first occurrence of a string in another string
黄舟
Release: 2023-03-17 06:16:02
Original
2133 people have browsed it
Example
Find the first occurrence of "world" in "Hello world!" and return the rest of the string:
<?php
echo strchr("Hello world!","world");
?>
Copy after login
Definition and Usage
strchr() function Search for the first occurrence of a string in another string.
This function is an alias of the strstr() function.
Note: This function is binary safe.
Note: This function is case-sensitive. To perform a case-insensitive search, use the stristr() function.
Syntax
strchr(string,search,before_search);
Copy after login
Parameters
Description
string
Required. Specifies the string to be searched for.
search
Required. Specifies the string to search for. If the argument is a number, searches for characters that match the ASCII value for that number.
before_search
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.
Technical Details
Return Value:
Returns the remainder of the string (from the match point). Returns FALSE if the searched string is not found.
The above is the detailed content of PHP function strchr() 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!
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn