wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren
wp_parse_str › WordPress Function
Seit2.2.1
Veraltetn/v
› wp_parse_str ( $input_string, $result )
Parameter: (2) |
|
Definiert in: |
|
Codex: |
Parses a string into variables to be stored in an array.
Ähnliche Funktionen: wp_parse_list, wp_parse_url, wp_parse_args, wp_parse_id_list, wp_parse_slug_list
Quellcode
function wp_parse_str( $input_string, &$result ) { parse_str( (string) $input_string, $result ); /** * Filters the array of variables derived from a parsed string. * * @since 2.2.1 * * @param array $result The array populated with variables. */ $result = apply_filters( 'wp_parse_str', $result ); }