📜  PHP | strpbrk()函数

📅  最后修改于: 2022-05-13 01:56:23.508000             🧑  作者: Mango

PHP | strpbrk()函数

strpbrk()函数是PHP中的一个内置函数,它在字符串中搜索任何指定的字符。此函数返回字符串的其余部分,它从第一次出现的任何指定字符处返回。如果没有找到任何字符,则返回 false。此函数区分大小写
句法:

strpbrk( $string, $charlist)

参数:此函数接受两个参数,如上述语法所示。这两个参数都是必需的,必须提供。所有这些参数描述如下:

  • $ 字符串:此参数指定要搜索的字符串。
  • $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()函数:
方案一:

php


php


php


输出:

eeks for Geeks!

方案二:

PHP


输出:

uter Science portal

程序 3:该程序将说明函数的大小写敏感性。

PHP


输出:

Science portal

参考: