urldecode_deep( mixed $value ): mixed

Navigates through an array, object, or scalar, and decodes URL-encoded values


Parameters

$value mixed Required
The array or string to be decoded.

Top ↑

Return

mixed The decoded value.


Top ↑

Source

File: wp-includes/formatting.php. View all references

function urldecode_deep( $value ) {
	return map_deep( $value, 'urldecode' );
}


Top ↑

Changelog

Changelog
Version Description
4.4.0 Introduced.

Top ↑

User Contributed Notes

You must log in before being able to contribute a note or feedback.