- strstr -- 查找字符串的首次出現(xiàn)崎逃,返回字符串從第一次出現(xiàn)的位置開始到該字符串的結尾或開始孩饼。
- stristr -- strstr 函數(shù)的忽略大小寫版本
- strchr -- strstr 函數(shù)的別名
- strrchr -- 查找字符串的最后一次出現(xiàn)窟绷,返回字符串從最后一次出現(xiàn)的位置開始到該字符串的結尾普办。
strstr
查找字符串的首次出現(xiàn)棒仍,返回字符串從第一次出現(xiàn)的位置開始到該字符串的結尾或開始冲茸。
mixed strstr ( string $haystack , mixed $needle [, bool $before_needle = false ] )
參數(shù)說明
haystack
在該字符串中進行查找遭商。
needle
如果 needle 不是一個字符串固灵,那么它將被轉換為整型并被視為字符的順序值來使用。
before_needle
若為 TRUE劫流,strstr() 將返回 needle 在 haystack 中的位置之前的部分巫玻。
返回值
成功:返回字符串 needle 之前或之后的一部分
失敗:如果沒找到 needle祠汇,將返回 FALSE仍秤。
注意
- 該函數(shù)區(qū)分大小寫
- 如果你僅僅想確定 needle 是否存在于 haystack 中,請使用速度更快可很、耗費內(nèi)存更少的 strpos() 函數(shù)
示例
<?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 為數(shù)字 】 */
$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() 函數(shù)的忽略大小寫版本
mixed stristr ( string $haystack , mixed $needle [, bool $before_needle = false ] )
該函數(shù)與 strstr() 唯一的區(qū)別就是不區(qū)分大小寫诗力。其他可參考strstr()
<?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() 函數(shù)的別名
mixed strchr ( string $haystack , mixed $needle [, bool $before_needle = false ] )
該函數(shù)等同 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
查找字符串的最后一次出現(xiàn)我抠,返回字符串從最后一次出現(xiàn)的位置開始到該字符串的結尾苇本。
mixed strrchr ( string $haystack , mixed $needle )
參數(shù)說明
haystack
在該字符串中進行查找袜茧。
needle
如果 needle 包含了不止一個字符,那么僅使用第一個字符瓣窄。該行為不同于 strstr()笛厦。
如果 needle 不是一個字符串,那么將被轉化為整型并被視為字符順序值俺夕。
返回值
成功:返回字符串 needle 之后的一部分
失斏淹埂:如果沒找到 needle,將返回 FALSE劝贸。
示例
<?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 為數(shù)字 】 */
$email = 'name@example.com';
$behind = strrchr($email, 97);
echo $behind; // 打印 ample.com
?>
OneAPM for PHP 能夠深入到所有 PHP 應用內(nèi)部完成應用性能管理 能夠深入到所有 PHP 應用內(nèi)部完成應用性能管理和監(jiān)控姨谷,包括代碼級別性能問題的可見性、性能瓶頸的快速識別與追溯映九、真實用戶體驗監(jiān)控梦湘、服務器監(jiān)控和端到端的應用性能管理。想閱讀更多技術文章氯迂,請訪問 OneAPM 官方技術博客践叠。
本文轉自 OneAPM 官方博客