函数原型
rawurlencode_deep( mixed $value ): mixed
函数描述
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.
函数位置
File: wp-includes/formatting.php.
函数源码
function rawurlencode_deep( $value ) {
return map_deep( $value, 'rawurlencode' );
}
源码链接
变更日志
| Version | Description |
|---|---|
| 3.4.0 | Introduced. |

