esc_url_raw

函数
esc_url_raw ( $url, $protocols = null )
参数
  • (string) $url The URL to be cleaned.
    Required:
  • (string[]) $protocols Optional. An array of acceptable protocols. Defaults to return value of wp_allowed_protocols().
    Required:
    Default: null
返回值
  • (string) The cleaned URL after sanitize_url() is run.
相关
  • sanitize_url()
定义位置
相关方法
esc_urlrest_urlesc_html__esc_html_eesc_html_x
引入
2.8.0
弃用
-

esc_url_raw: 这个函数用来转义一个URL,用于查询字符串参数。

对数据库或重定向使用的URL进行净化。

这个函数是sanitize_url()的一个别名。

function esc_url_raw( $url, $protocols = null ) {
	return sanitize_url( $url, $protocols );
}

常见问题

FAQs
查看更多 >