function strtok


strtokPHP ManualPrevNextstrtokstrtok -- Tokenize stringDescriptionstring strtok(string arg1, string arg2); strtok() is used to tokenize a string. That is, if you have a string like "This is an example string" you could tokenize this string into its individual words by using the space character as the token. Example 1. Strtok() example 1  2 $string = "This is an example string"; 3 $tok = strtok ($string," "); 4 while ($tok) { 5  echo "Word=$tok<br>"; 6  $tok = strtok (" "); 7 } 8  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 are found. Also be careful that your tokens may be equal to "0". This evaluates to false in conditional expressions. See also split() and explode(). PrevHomeNextstrstrUpstrtolower

Wyszukiwarka

Podobne podstrony:
function strtok
function strtok
function fdf next field name
function ccvs void
function mysql error
function mcal event set end
function mcrypt cbc
Functional Origins of Religious Concepts Ontological and Strategic Selection in Evolved Minds
function domnode get content
function mcrypt module get algo key size
function pdf execute image

więcej podobnych podstron