- strstr -- 查找字符串的首次出現,返回字符串從第一次出現的位置開始到該字符串的結尾或開始。
- stristr -- strstr 函數的忽略大小寫版本
- strchr -- strstr 函數的別名
- strrchr -- 查找字符串的最後一次出現,返回字符串從最後一次出現的位置開始到該字符串的結尾。
##strstr 查找字符串的首次出現,返回字符串從第一次出現的位置開始到該字符串的結尾或開始。php
mixed strstr ( string $haystack , mixed $needle [, bool $before_needle = false ] )
####參數說明 haystack 在該字符串中進行查找。 needle 若是 needle 不是一個字符串,那麼它將被轉換爲整型並被視爲字符的順序值來使用。 before_needle 若爲 TRUE,strstr() 將返回 needle 在 haystack 中的位置以前的部分。 ####返回值 成功:返回字符串 needle 以前或以後的一部分 失敗:若是沒找到 needle,將返回 FALSE。 ####注意html
<?php /*【 needle 爲單個字符 】 */ $email = 'name@example.com'; $domain = strstr($email, '@'); echo $domain; // 打印 @example.com $user = strstr($email, '@', true); // 從 PHP 5.3.0 起 echo $user; // 打印 name ?>
<?php /*【 needle 爲數字 】 */ $email = 'name@example.com'; //字母a的 ASCII碼爲 97 $behind = strstr($email, 97); echo $behind; // 打印 ame@example.com $front = strstr($email, 97, true); // 從 PHP 5.3.0 起 echo $front; // 打印 n ?>
<?php /*【 needle 爲字符串 】 */ $email = 'name@example.com'; $behind = strstr($email, 'ex'); echo $behind; // 打印 example.com $front = strstr($email, 'ex', true); // 從 PHP 5.3.0 起 echo $front; // 打印 name@ */ ?>
<?php /*【 needle 爲字符串 】 */ $email = 'name@example.com'; $behind = strstr($email, 'ab'); echo $behind; // 返回 false $front = strstr($email, 'ab', true); // 從 PHP 5.3.0 起 echo $front; // 返回 false */ ?>
##stristr strstr() 函數的忽略大小寫版本服務器
mixed stristr ( string $haystack , mixed $needle [, bool $before_needle = false ] )
該函數與 strstr() 惟一的區別就是不區分大小寫。其餘可參考strstr()dom
<?php $email = 'name@example.com'; $behind = stristr($email, 'A'); echo $behind; // 打印 ame@example.com $front = stristr($email, 'A', true); // 從 PHP 5.3.0 起 echo $front; // 打印 n ?>
##strchr strstr() 函數的別名函數
mixed strchr ( string $haystack , mixed $needle [, bool $before_needle = false ] )
該函數等同 strstr() 。其餘可參考strstr()性能
$email = 'name@example.com'; $behind = strchr($email, 'a'); echo $behind; // 打印 ame@example.com $front = strchr($email, 'a', true); // 從 PHP 5.3.0 起 echo $front; // 打印 n ?>
##strrchr 查找字符串的最後一次出現,返回字符串從最後一次出現的位置開始到該字符串的結尾。code
mixed strrchr ( string $haystack , mixed $needle )
####參數說明 haystack 在該字符串中進行查找。 needle 若是 needle 包含了不止一個字符,那麼僅使用第一個字符。該行爲不一樣於 strstr()。 若是 needle 不是一個字符串,那麼將被轉化爲整型並被視爲字符順序值。 ####返回值 成功:返回字符串 needle 以後的一部分 失敗:若是沒找到 needle,將返回 FALSE。htm
####示例內存
<?php /*【 needle 爲字符 】 */ $email = 'name@example.com'; $behind = strrchr($email, 'a'); echo $behind; // 打印 ample.com ?>
/*【 needle 爲字符串 】 */ $email = 'name@example.com'; $behind = strrchr($email, 'am'); echo $behind; // 打印 ample.com ?>
<?php /*【 needle 爲數字 】 */ $email = 'name@example.com'; $behind = strrchr($email, 97); echo $behind; // 打印 ample.com ?>
OneAPM for PHP 可以深刻到全部 PHP 應用內部完成應用性能管理 可以深刻到全部 PHP 應用內部完成應用性能管理和監控,包括代碼級別性能問題的可見性、性能瓶頸的快速識別與追溯、真實用戶體驗監控、服務器監控和端到端的應用性能管理。想閱讀更多技術文章,請訪問 OneAPM 官方技術博客。字符串
本文轉自 OneAPM 官方博客