主要用于 URL 过滤:
拒绝不是下面协议的 URL (defaulting to http, https, ftp, ftps, mailto, news, irc, gopher, nntp, feed, and telnet)
消除无效字符和删除危险字符。
将字符转换成 HTML 实体,并且将 & 和 单引号(’) 转换成数字实体:&, '。
<?php esc_url( $url, $protocols, $_context ); ?>
解释
$url
(string) (required) 将要被清理过滤的 URL
Default: 无
$protocols
(array) (optional) 可以接受协议的数组,如果没有设置,默认是:’http’, ‘https’, ‘ftp’, ‘ftps’, ‘mailto’, ‘news’, ‘irc’, ‘gopher’, ‘nntp’, ‘feed’, ‘telnet’。
Default: 无
$_context
(string) (optional) 如何返回 URL。
Default: ‘display’
返回值
(string)
已经清理过滤的 URL
评论抢沙发