parse_str
Description
Syntax
parse_str( string $string, array &$result ): void
Parameters
string
The input string.
result
Variables are stored as array elements.
Return
No value is returned.
Examples
1 · string result
<? $string = "key=value"; parse_str($string, $result); echo $result["key"]; ?>
value
2 · space
<? $string = "my key=value"; parse_str($string, $result); echo $result["my_key"]; ?>
value
3 · array
<? $string = "key[]=value1&key[]=value2+value3+value4&key[]=value5"; parse_str($string, $result); print_r($result["key"]); echo $result["key"][0] . PHP_EOL; echo $result["key"][1] . PHP_EOL; echo $result["key"][2]; ?>
Array ( [0] => value1 [1] => value2 value3 value4 [2] => value5 ) value1 value2 value3 value4 value5
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
- 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
- strtok
- strtolower
- strtoupper
- strtr
- substr
- substr_compare
- substr_count
- substr_replace
- trim
- ucfirst
- ucwords
- vfprintf
- vprintf
- vsprintf
- wordwrap