urldecode_deep

函数


urldecode_deep ( $value )
参数
  • (mixed)
    $value
    The array or string to be decoded.
    Required:
返回值
  • (mixed) The decoded value.
定义位置
  • wp-includes/formatting.php
    , line 2854
引入
4.4.0
弃用

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

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