PHP 函数 strtok
PHP 函数 strtok
<?php
$input = "tutorials point simple easy learning.";
$token = strtok($input, " ");
while ($token !== false){
echo "$token<br>";
$token = strtok(" ");
}
?>
<?php
$input = "tutorials point simple easy learning.";
$token = strtok($input, " ");
while ($token !== false){
echo "$token<br>";
$token = strtok(" ");
}
?>