Lines Matching refs:strtok
2 Test strtok() function : usage variations - modifying the input string while tokenising
5 /* Prototype : string strtok ( str $str, str $token )
11 * Testing strtok() : modifying the input string while it is getting tokenised
14 echo "*** Testing strtok() : with modification of input string in between tokenising ***\n";
19 echo "\n*** Testing strtok() when string being tokenised is prefixed with another string in between…
20 var_dump( strtok($str, $token) );
25 var_dump( strtok($token) );
29 echo "\n*** Testing strtok() when string being tokenised is suffixed with another string in between…
30 var_dump( strtok($str, $token) );
35 var_dump( strtok($token) );
41 *** Testing strtok() : with modification of input string in between tokenising ***
43 *** Testing strtok() when string being tokenised is prefixed with another string in between the pro…
76 *** Testing strtok() when string being tokenised is suffixed with another string in between the pro…