Документ взят из кэша поисковой машины. Адрес оригинального документа : http://old.master.cmc.msu.ru/php/function.strstr.html
Дата изменения: Sun Feb 3 22:56:37 2002
Дата индексирования: Mon Oct 1 23:58:52 2012
Кодировка:
strstr

strstr

(PHP 3 <= 3.0.18, PHP 4 >= 4.0.0)

strstr -- Find first occurrence of a string

Description

string strstr ( string haystack, string needle)

Returns all of haystack from the first occurrence of needle to the end.

If needle is not found, returns FALSE.

If needle is not a string, it is converted to an integer and applied as the ordinal value of a character.

Note: This function is case-sensitive. For case-insensitive searches, use stristr().

Example 1. strstr() example

$email = 'sterling@designmultimedia.com';
$domain = strstr($email, '@');
print $domain; // prints @designmultimedia.com

See also ereg(), preg_match(), strchr(), stristr(), strpos(), strrchr(), and substr().