w3resource logo


PHP strstr function

PHP : strstr() function

rating has average rating 10 out of 10. Total 1 users rated.

<<PreviousNext>>

Description

The strstr() function is used to get the first occurrence of a string inside another string.

This function is case sensitive.

Version

(PHP 4 and above)

Syntax

strstr(string_name, search_string, before_search)

Parameters

Name Description Required /
Optional
Type
string_name The input string. Required String
search_string The string to search for. Required Mixed*
before_search Returns the part of the string_name before the first occurrence of the search_string when true. Optional Boolean

*Mixed : Mixed indicates that a parameter may accept multiple (but not necessarily all) types.

Return value

The portion of string, or false if search_string is not found.

Value Type : String.

Pictorial Presentation

string_strstr

Example :

<?php
$string1="W3RESOURCE.COM";
$newstring=strstr($string1,".");
echo $newstring;
?>

Output

.COM

View the example in the browser

See also

PHP Function Reference

<<PreviousNext>>