PHP字串函式之 strstr stristr strchr strrchr

OneAPM官方技術部落格發表於2016-03-25
  • strstr -- 查詢字串的首次出現,返回字串從第一次出現的位置開始到該字串的結尾或開始。
  • stristr -- strstr 函式的忽略大小寫版本
  • strchr -- strstr 函式的別名
  • strrchr -- 查詢字串的最後一次出現,返回字串從最後一次出現的位置開始到該字串的結尾。

strstr

查詢字串的首次出現,返回字串從第一次出現的位置開始到該字串的結尾或開始。

mixed strstr ( string $haystack , mixed $needle [, bool $before_needle = false ] )

引數說明

haystack 在該字串中進行查詢。 needle 如果 needle 不是一個字串,那麼它將被轉換為整型並被視為字元的順序值來使用。 before_needle 若為 TRUE,strstr() 將返回 needle 在 haystack 中的位置之前的部分。

返回值

成功:返回字串 needle 之前或之後的一部分 失敗:如果沒找到 needle,將返回 FALSE。

注意

  1. 該函式區分大小寫
  2. 如果你僅僅想確定 needle 是否存在於 haystack 中,請使用速度更快、耗費記憶體更少的 strpos() 函式

    示例

    <?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

<?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

<?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

<?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()

<?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

查詢字串的最後一次出現,返回字串從最後一次出現的位置開始到該字串的結尾。

mixed strrchr ( string $haystack , mixed $needle )

引數說明

haystack 在該字串中進行查詢。 needle 如果 needle 包含了不止一個字元,那麼僅使用第一個字元。該行為不同於 strstr()。 如果 needle 不是一個字串,那麼將被轉化為整型並被視為字元順序值。

返回值

成功:返回字串 needle 之後的一部分 失敗:如果沒找到 needle,將返回 FALSE。

示例

<?php
/*【 needle 為字元 】 */
$email  = 'name@example.com';
$behind = strrchr($email, 'a');
echo $behind; // 列印 ample.com
?>

```php

/*【 needle 為字串 】 */
$email  = 'name@example.com';
$behind = strrchr($email, 'am');
echo $behind; // 列印 ample.com
?>

```

```php

<?php
/*【 needle 為數字 】 */
$email  = 'name@example.com';
$behind = strrchr($email, 97);
echo $behind; // 列印 ample.com
?>

``` OneAPM for PHP 能夠深入到所有 PHP 應用內部完成應用效能管理 能夠深入到所有 PHP 應用內部完成應用效能管理和監控,包括程式碼級別效能問題的可見性、效能瓶頸的快速識別與追溯、真實使用者體驗監控、伺服器監控和端到端的應用效能管理。想閱讀更多技術文章,請訪問 OneAPM 官方技術部落格

本文轉自 OneAPM 官方部落格

相關文章