strtok
Description
Syntax
strtok(
string $string,
string $delimiter
): string|falsestrtok(
string $delimiter
): string|falseParameters
string
The string being split up into smaller strings (tokens).
delimiter
The delimiter used when splitting up string.
Return
Returns a string token, or false if no more tokens are available.
WARNING: This function may return Boolean false, but may also return a non-Boolean value which evaluates to false. Use the === operator for testing the return value of this function.
Examples
1 · string delimiter · single
<? $string = ",string1,string2,string3,string4,"; $delimiter = ","; $return = strtok($string, $delimiter); echo $return;
string1
2 · string delimiter · multiple
<? $string = ",string1 string2,string3;string4,"; $delimiter = " ,;"; $return = strtok($string, $delimiter); echo $return;
string1
3 · delimiter · single
<? $delimiter = ","; $return = strtok($delimiter); var_export($return);
false
4 · delimiter · multiple
<? $delimiter = " ,;"; $return = strtok($delimiter); var_export($return);
false
5 · while
<?
$string = ",string1 string2,string3;string4,";
$delimiter = " ,;";
$return = strtok($string, $delimiter);
while($return !== false)
{
echo $return . PHP_EOL;
$return = strtok($delimiter);
}
string1 string2 string3 string4
Links
String
- addcslashes
- addslashes
- bin2hex
- chop
- chr
- chunk_split
- convert_uudecode
- convert_uuencode
- count_chars
- crc32
- crypt
- echo
- explode
- fprintf
- get_html_translation_table
- hebrev
- hebrevc
- hex2bin
- html_entity_decode
- htmlentities
- htmlspecialchars
- htmlspecialchars_decode
- implode
- join
- lcfirst
- levenshtein
- localeconv
- ltrim
- md5
- md5_file
- metaphone
- nl_langinfo
- nl2br
- number_format
- ord
- parse_str
- printf
- quoted_printable_decode
- quoted_printable_encode
- quotemeta
- rtrim
- setlocale
- sha1
- sha1_file
- similar_text
- soundex
- sprintf
- sscanf
- str_contains
- str_decrement
- str_ends_with
- str_getcsv
- str_increment
- str_ireplace
- str_pad
- str_repeat
- str_replace
- str_rot13
- str_shuffle
- str_split
- str_starts_with
- str_word_count
- strcasecmp
- strchr
- strcmp
- strcoll
- strcspn
- strip_tags
- stripcslashes
- stripos
- stripslashes
- stristr
- strlen
- strnatcasecmp
- strnatcmp
- strncasecmp
- strncmp
- strpbrk
- strpos
- strrchr
- strrev
- strripos
- strrpos
- strspn
- strstr
- strtolower
- strtoupper
- strtr
- substr
- substr_compare
- substr_count
- substr_replace
- trim
- ucfirst
- ucwords
- vfprintf
- vprintf
- vsprintf
- wordwrap