urldecode_deep( mixed $value )

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


Description Description


Parameters Parameters

$value

(mixed) (Required) The array or string to be decoded.


Top ↑

Return Return

(mixed) $value The decoded value.


Top ↑

Source Source

File: wp-includes/formatting.php

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

Top ↑

Changelog Changelog

Changelog
Version Description
4.4.0 Introduced.


Top ↑

User Contributed Notes User Contributed Notes

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