1.根据预定义的字符对字符串进行词法分析
<?PHP $info = "J.Gilmore:jason@example.com|Columbus,Ohio"; //定界符包括冒号(:)、竖线(|)、逗号(,) $tokens=":|,"; $tokenized = strtok($info,$tokens); //打印输出$tokenized数组每个元素 while($tokenized){ echo "Element = $tokenized<br>"; //在后续调用中不要包含第一个参数 $tokenized=strtok($tokens); } ?>
结果如下
Element = J.Gilmore Element = jason@example.com Element = Columbus Element = Ohio原文链接:https://www.f2er.com/regex/361831.html