字符串 strchr() 函数是 PHP 的预定义函数。它是 strstr() 函数的别名或可用于搜索给定字符串的第一次出现。
注意:此函数区分大小写且二进制安全。
用法:
strchr(string,search,before_search);
参数 | 描述 | 必需/可选 |
---|---|---|
String | 指定要搜索的字符串。 | Required |
Search | 指定要搜索的字符串。如果参数是数字,则返回 ASCII 值。 | required |
before_search | 默认值为布尔值时为假。如果为真,则在第一次出现搜索参数之前返回字符串的解析 | Optional |
例子1
<?php
//It will return the first occurrence of "PHP" inside "Hello PHP" and return the rest of the string:
$str1="Hello PHP";
$str2="PHP";
echo strchr($str1,$str2);
?>
输出:
PHP
例子2
<?php
//It will Search a string for the ASCII value of "P" and return the rest of the string:
$str="Hello PHP";
echo strchr("PHP Javatpoint!",112);
?>
输出:
point!
例子3
<?php
//It will return the part of the string before the first occurence of "PHP":
$str1="Hello PHP";
$str2="PHP";
echo strchr($str1,$str2,true);
?>
输出:
Hello
参考文献:
http://php.net/manual/en/function.strchr.php相关用法
- PHP string strcoll()用法及代码示例
- PHP string strcasecmp()用法及代码示例
- PHP string strcmp()用法及代码示例
- PHP string str_repeat()用法及代码示例
- PHP string str_shuffle()用法及代码示例
- PHP string str_ireplace()用法及代码示例
- PHP string str_split()用法及代码示例
- PHP string str_rot13()用法及代码示例
- PHP string str_pad()用法及代码示例
- PHP string strip_tags()用法及代码示例
- PHP string str_word_count()用法及代码示例
- PHP string sha1()用法及代码示例
- PHP string setlocale()用法及代码示例
- PHP string sha1_file()用法及代码示例
- PHP string similar_text()用法及代码示例
- PHP string rtrim()用法及代码示例
- PHP string printf()用法及代码示例
- PHP string ord()用法及代码示例
- PHP string join()用法及代码示例
注:本文由纯净天空筛选整理自 PHP string strchr() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。