PHP stristr() 函數
PHP stristr() 函數
實例
查找 "world" 在 "Hello world!" 中的第一次出現,并返回字符串的剩余部分:
<?php
echo stristr("Hello world!","WORLD");
?>
echo stristr("Hello world!","WORLD");
?>
運行實例 ?
定義和用法
stristr() 函數搜索字符串在另一字符串中的第一次出現。
注釋:該函數是二進制安全的。
注釋:該函數是不區分大小寫的。如需進行區分大小寫的搜索,請使用 strstr() 函數。
語法
stristr(string,search,before_search)
參數 | 描述 |
---|---|
string | 必需。規定被搜索的字符串。 |
search | 必需。規定所搜索的字符串。如果該參數是數字,則搜索匹配該數字對應的 ASCII 值的字符。 |
before_search | 可選。一個默認值為 "false" 的布爾值。如果設置為 "true",它將返回 search 參數第一次出現之前的字符串部分。 |
技術細節
返回值: | 返回字符串的剩余部分(從匹配點)。如果未找到所搜索的字符串,則返回 FALSE。 |
---|---|
PHP 版本: | 4+ |
更新日志: | 在 PHP 5.3 中,新增了 before_search 參數。 在 PHP 4.3 中,該函數變成是二進制安全的。 |
更多實例
相關文章
- PHP EOF(heredoc) 使用說明
- PHP While 循環
- PHP 函數
- PHP 命名空間 namespace
- PHP 面向對象
- PHP 文件上傳
- PHP 高級過濾器
- PHP array_diff() 函數
- PHP array_pop() 函數
- PHP array_reverse() 函數
- PHP array_shift() 函數
- PHP array_splice() 函數
- PHP array_udiff_uassoc() 函數
- PHP arsort() 函數
- PHP key() 函數
- PHP natsort() 函數
- PHP pos() 函數
- PHP uasort() 函數
- PHP uksort() 函數
- PHP 5 Array 函數