wpseek.com
Un motore di ricerca WordPress per sviluppatori e autori di temi



wp_parse_str › WordPress Function

Da2.2.1
Deprecaton/a
wp_parse_str ( $input_string, $result )
Parametri: (2)
  • (string) $input_string The string to be parsed.
    Richiesto:
  • (array) $result Variables will be stored in this array.
    Richiesto:
Definito a:
Codex:

Parses a string into variables to be stored in an array.



Sorgenti

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 );
}