sanitize_trackback_urls
函数
sanitize_trackback_urls ( $to_ping )
- 参数
-
-
(string)
$to_ping
Space or carriage return separated URLs- Required: 是
-
(string)
- 返回值
-
- (string) URLs starting with the http or https protocol, separated by a carriage return.
- 定义位置
-
-
wp-includes/formatting.php
, line 5585
-
wp-includes/formatting.php
- 引入
- 3.4.0
- 弃用
- –
对用于发送trackbacks的空格或回车分隔URL进行Sanitize。
function sanitize_trackback_urls( $to_ping ) { $urls_to_ping = preg_split( '/[rnt ]/', trim( $to_ping ), -1, PREG_SPLIT_NO_EMPTY ); foreach ( $urls_to_ping as $k => $url ) { if ( ! preg_match( '#^https?://.#i', $url ) ) { unset( $urls_to_ping[ $k ] ); } } $urls_to_ping = array_map( 'sanitize_url', $urls_to_ping ); $urls_to_ping = implode( "n", $urls_to_ping ); /** * Filters a list of trackback URLs following sanitization. * * The string returned here consists of a space or carriage return-delimited list * of trackback URLs. * * @since 3.4.0 * * @param string $urls_to_ping Sanitized space or carriage return separated URLs. * @param string $to_ping Space or carriage return separated URLs before sanitization. */ return apply_filters( 'sanitize_trackback_urls', $urls_to_ping, $to_ping ); }
声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。