Lines Matching refs:strtok
2 Test strtok() function : usage variations - modifying the input string while tokenising
6 * Testing strtok() : modifying the input string while it is getting tokenised
9 echo "*** Testing strtok() : with modification of input string in between tokenising ***\n";
14 echo "\n*** Testing strtok() when string being tokenised is prefixed with another string in between…
15 var_dump( strtok($str, $token) );
20 var_dump( strtok($token) );
24 echo "\n*** Testing strtok() when string being tokenised is suffixed with another string in between…
25 var_dump( strtok($str, $token) );
30 var_dump( strtok($token) );
36 *** Testing strtok() : with modification of input string in between tokenising ***
38 *** Testing strtok() when string being tokenised is prefixed with another string in between the pro…
71 *** Testing strtok() when string being tokenised is suffixed with another string in between the pro…