📜  php 查找字符串中的第一个匹配项 - PHP 代码示例

📅  最后修改于: 2022-03-11 14:54:44.435000             🧑  作者: Mango

代码示例1
#You can use the strpos() function 

$cheese = "cheese";

strpos($cheese, 'h');

#Output: 1