|
Home
iRate! IceMelon IM Tutorials Headlines CoolSites PHP Functions |
Most Referenced Functions » google_pagerank() » preg_replace() » imagecreatefrompng() » site_pageranks() » imagepng() » imagedestroy() » imagestring() » imagecolorallocate() » htmlentities() » fopen() » preg_match() » header() » getimagesize() » htmlspecialchars() » ob_start() » session_start() » strstr() » ob_flush() » preg_match_all() » strpos() » flush() » setcookie() » str_replace() » array2vars() » nl2br() » preg_split() » ereg() » urlencode() » ereg_replace() » readgzfile() Become a sponsor for $15/month. Link is sitewide - PR5 homepage, 20+ PR4 pages, 90+ PR3 pages. Email dave[AT]icemelon[D0T]c0m. |
PHP Functions
Function: strstr (PHP 3, PHP 4, PHP 5) strstr -- Find first occurrence of a stringDescriptionstring strstr ( string haystack, string needle )Returns part of haystack string from the first occurrence of needle to the end of haystack . 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 <?php $email = 'user@example.com'; $domain = strstr($email, '@'); echo $domain; // prints @example.com ?>
Note: If you only want to determine if a particular needle occurs within haystack , use the faster and less memory intensive function strpos() instead. strstr() has been binary safe since PHP 4.3.0 Related Function(s) |