| 
 | strtokTokenize string Description
   string strtok
    ( string  $str, string$token)
   string strtok
    ( string  $token)
   strtok splits a string ( Note that only the first call to strtok uses the string argument. Every subsequent call to strtok only needs the token to use, as it keeps track of where it is in the current string. To start over, or to tokenize a new string you simply call strtok with the string argument again to initialize it. Note that you may put multiple tokens in the token parameter. The string will be tokenized when any one of the characters in the argument is found. Parameters
 
 Return ValuesA string token. Examples
 Example #1 strtok example 
<?php
 Example #2 strtok behavior on empty part found 
<?phpThe above example will output: 
    string(9) "something"
    bool(false)
NotesWarning This function may
return Boolean  See Also
 
 |