wpseek.com
WordPress开发者和主题制作者的搜索引擎



rawurlencode_deep › WordPress Function

Since3.4.0
已弃用n/a
rawurlencode_deep ( $value )
参数:
  • (mixed) $value The array or string to be encoded.
    Required: Yes
返回:
  • (mixed) The encoded value.
定义在:
文档:

Navigates through an array, object, or scalar, and raw-encodes the values to be used in a URL.



源码

function rawurlencode_deep( $value ) {
	return map_deep( $value, 'rawurlencode' );
}