PHP strstr() 函数
PHP strstr() 函数
实例
查找 "world" 在 "Hello world!" 中是否存在,如果是,返回该字符串及后面剩余部分:
<?php
echo strstr("Hello world!","world"); // 输出 world!
?>
运行实例 »
定义和用法
strstr() 函数搜索字符串在另一字符串中是否存在,如果是,返回该字符串及剩余部分,否则返回 FALSE。
注释:该函数是二进制安全的。
注释:该函数是区分大小写的。如需进行不区分大小写的搜索,请使用 stristr() 函数。
语法
strstr(string,search,before_search)
参数 | 描述 |
---|---|
string | 必需。规定被搜索的字符串。 |
search | 必需。规定要搜索的字符串。如果该参数是数字,则搜索匹配该数字对应的 ASCII 值的字符。 |
before_search | 可选。一个默认值为 "false" 的布尔值。如果设置为 "true",它将返回 search 参数第一次出现之前的字符串部分。 |
技术细节
返回值: | 返回字符串的剩余部分(从匹配点)。如果未找到所搜索的字符串,则返回 FALSE。 |
---|---|
PHP 版本: | 4+ |
更新日志: | 在 PHP 5.3 中,新增了 before_search 参数。 |
更多实例
相关文章
- PHP 变量
- PHP echo 和 print 语句
- PHP EOF(heredoc) 使用说明
- PHP 常量
- PHP 函数
- PHP $_GET 变量
- PHP array_change_key_case() 函数
- PHP array_chunk() 函数
- PHP array_diff_uassoc() 函数
- PHP array_diff_ukey() 函数
- PHP array_intersect_assoc() 函数
- PHP array_unique() 函数
- PHP array_unshift() 函数
- PHP array_walk_recursive() 函数
- PHP arsort() 函数
- PHP current() 函数
- PHP prev() 函数
- PHP sizeof() 函数
- PHP uksort() 函数
- PHP 5 Filesystem 函数