wp-includes/formatting.php:5139Parses a string into variables to be stored in an array.
$input_stringstring$resultarrayOne hook fires while wp_parse_str() runs, in this order:
Filters the array of variables derived from a parsed string.
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 );}Introduced in 2.2.1. Unchanged from 6.7.7 through 7.1.0.
Signature, return type and hooks compared across 5 parsed releases.
src/wp-includes/formatting.php, and regenerated for each WordPress release so it tracks the code rather than a snapshot of it.