当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


PHP string strchr()用法及代码示例


字符串 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 strchr() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。