esc_url_raw()

esc_url_raw( string $url, string[] $protocols = null ) …

esc_url_raw( string $url, string[] $protocols = null )

执行esc_url()以获取数据库使用情况。
Performs esc_url() for database usage.

目录锚点:#参数#返回#源码#笔记


参数(Parameters)

参数 类型 必填 说明
$url (string) 必需 要清除的URL。
$protocols (string[]) 可选 一系列可接受的协议。

返回(Return)

(string)已清理的URL。


源码(Source)

/**
 * Performs esc_url() for database usage.
 *
 * @since 2.8.0
 *
 * @param string $url       The URL to be cleaned.
 * @param array  $protocols An array of acceptable protocols.
 * @return string The cleaned URL.
 */
function esc_url_raw( $url, $protocols = null ) {
	return esc_url( $url, $protocols, 'db' );
}
更新版本 源码位置 使用 被使用
2.8.0 wp-includes/formatting.php:4396 43 1 function

笔记(Notes)

对错用法

类别:WordPress 函数手册

本文收集自互联网,转载请注明来源。
如有侵权,请联系 wper_net@163.com 删除。

评论 (0)COMMENT

登录 账号发表你的看法,还没有账号?立即免费 注册