📅  最后修改于: 2022-03-11 14:53:41.945000             🧑  作者: Mango
//Find the position of the first occurrence of a substring in a string
$mystring = 'abc';
$findme = 'a';
$pos = strpos($mystring, $findme);