PHP strtok() 函数

我们仅在第一次调用 strtok() 函数时使用了 string 参数。在首次调用后,该函数仅需要 split 参数,这是因为它清楚自己在当前字符串中所在的位置。

如需分割一个新的字符串,请再次调用带 string 参数的 strtok()

<!DOCTYPE html>
<html>
<body>

<?php
$string = "Hello world. Beautiful day today.";
$token = strtok($string, " ");

while ($token !== false)
{
echo "$token<br>";
$token = strtok(" ");
}
?>
  
</body>
</html>

 

 

参考:

https://www.w3school.com.cn/php/func_string_strtok.asp

 

 

posted @ 2019-08-05 19:25  anobscureretreat  阅读(159)  评论(0编辑  收藏  举报