PHP4 | PHP5 | PHP7 |
---|---|---|
支持 | 支持 | 支持 |
V5.3.0 新增可選的 before_needle 參數。
V4.3.0 strstr() 成爲二進制安全的。
strstr (string $haystack , mixed $needle [, bool $before_needle = FALSE ] )
返回 haystack 字符串從 needle 第一次出現的位置開始到 haystack 結尾的字符串。php
該函數區分大小寫。若是想要不區分大小寫,請使用 stristr()。
若是你僅僅想肯定 needle 是否存在於 haystack 中,請使用速度更快、耗費內存更少的 strpos() 函數。
參數 | 必需的 | 描述 |
---|---|---|
haystack | 是 | 輸入字符串。 |
needle | 是 | 若是 needle 不是一個字符串,那麼它將被轉化爲整型而且做爲字符的序號來使用。 |
before_needle | 否 | 若爲 TRUE,strstr() 將返回 needle 在 haystack 中的位置以前的部分。 |
$email = 'name@example.com'; $domain = strstr($email, '@'); echo $domain; // 打印 @example.com echo "<br/>"; $user = strstr($email, '@', true); // 從 PHP 5.3.0 起 echo $user; // 打印 name