查找 "Hello world!" 中第一次出现的 "world" 并返回字符串的其余部分:
<?php
echo strchr("Hello world!","world");
?>
亲自试一试 »
strchr() 函数搜索一个字符串在另一个字符串中第一次出现的位置。
该函数是以下函数的别名strstr()功能。
笔记:该函数是二进制安全的。
笔记:该函数区分大小写。对于不区分大小写的搜索,请使用斯特里斯特()功能。
strchr(
string,search,before_search);
Parameter | Description |
---|---|
string | Required. Specifies the string to search |
search | Required. Specifies the string to search for. If this parameter is a number, it will search for the character matching the ASCII value of the number |
before_search | Optional. A boolean value whose default is "false". If set to "true", it returns the part of the string before the first occurrence of the search parameter. |
返回值: | 返回字符串的其余部分(从匹配点开始),如果未找到要搜索的字符串,则返回 FALSE。 |
---|---|
PHP 版本: | 4+ |
变更日志: | 这个之前_搜索PHP 5.3 中添加了参数 |
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!