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


PHP strpbrk()用法及代码示例


strpbrk()函数是PHP中的内置函数,它在字符串中搜索任何指定字符。此函数从发现任何指定字符的第一个匹配项的位置返回字符串的其余部分。如果找不到任何字符,则返回false。此函数区分大小写。

用法:

strpbrk( $string, $charlist)

参数:该函数接受两个参数,如上面的语法所示。这两个参数都是强制性的,必须提供。所有这些参数如下所述:


  • $string: 此参数指定要搜索的字符串。
  • $charlist: 此参数指定要查找的字符。

返回值:此函数返回从找到的字符开始的字符串,如果找不到则返回false。

例子:

Input : $string = "Geeks for Geeks!", $charlist = "ef"
Output : eeks for Geeks!
Explanation : 'e' is the first occurrence of the specified 
characters. This function will, therefore, output "eeks for Geeks!", 
because it returns the rest of the string from where it found
the first occurrence of 'e'.


Input : $string = "A Computer Science portal", $charlist = "tue"
Output : uter Science portal

下面的程序将说明PHP中的strpbrk()函数:

示例1:

<?php 
echo strpbrk("Geeks for Geeks!", "ef");  
?>

输出:

eeks for Geeks!

示例2:

<?php 
echo strpbrk("A Computer Science portal", "tue");  
?>

输出:

uter Science portal

示例3:该程序将说明该函数的区分大小写。

<?php 
echo strpbrk("A Computer Science portal", "c");  
?>

输出:

cience portal

参考:
http://php.net/manual/en/function.strpbrk.php



相关用法


注:本文由纯净天空筛选整理自RICHIK BHATTACHARJEE大神的英文原创作品 PHP | strpbrk() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。