rawurlencode_deep()

最后更新于:2021-11-27 20:53:35

rawurlencode_deep( mixed$value)

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

参数

$value

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

响应

(mixed) The encoded value.

源文件

文件: gc-includes/formatting.php

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