當前位置: 首頁>>代碼示例>>PHP>>正文


PHP wp_kses_bad_protocol_once2函數代碼示例

本文整理匯總了PHP中wp_kses_bad_protocol_once2函數的典型用法代碼示例。如果您正苦於以下問題:PHP wp_kses_bad_protocol_once2函數的具體用法?PHP wp_kses_bad_protocol_once2怎麽用?PHP wp_kses_bad_protocol_once2使用的例子?那麽, 這裏精選的函數代碼示例或許可以為您提供幫助。


在下文中一共展示了wp_kses_bad_protocol_once2函數的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: wp_kses_bad_protocol_once

function wp_kses_bad_protocol_once($string, $allowed_protocols, $count = 1)
{
    $string2 = preg_split('/:|&#0*58;|&#x0*3a;/i', $string, 2);
    if (isset($string2[1]) && !preg_match('%/\\?%', $string2[0])) {
        $string = trim($string2[1]);
        $protocol = wp_kses_bad_protocol_once2($string2[0], $allowed_protocols);
        if ('feed:' == $protocol) {
            if ($count > 2) {
                return '';
            }
            $string = wp_kses_bad_protocol_once($string, $allowed_protocols, ++$count);
            if (empty($string)) {
                return $string;
            }
        }
        $string = $protocol . $string;
    }
    return $string;
}
開發者ID:AppItNetwork,項目名稱:yii2-wordpress-themes,代碼行數:19,代碼來源:kses.php

示例2: wp_kses_bad_protocol_once

/**
 * Sanitizes content from bad protocols and other characters.
 *
 * This function searches for URL protocols at the beginning of $string, while
 * handling whitespace and HTML entities.
 *
 * @since 1.0.0
 *
 * @param string $string Content to check for bad protocols
 * @param string $allowed_protocols Allowed protocols
 * @return string Sanitized content
 */
function wp_kses_bad_protocol_once($string, $allowed_protocols)
{
    $string2 = preg_split('/:|&#0*58;|&#x0*3a;/i', $string, 2);
    if (isset($string2[1]) && !preg_match('%/\\?%', $string2[0])) {
        $string = wp_kses_bad_protocol_once2($string2[0], $allowed_protocols) . trim($string2[1]);
    }
    return $string;
}
開發者ID:fka2004,項目名稱:webkit,代碼行數:20,代碼來源:kses.php

示例3: wp_kses_bad_protocol_once

/**
 * Sanitizes content from bad protocols and other characters.
 *
 * This function searches for URL protocols at the beginning of $string, while
 * handling whitespace and HTML entities.
 *
 * @since 1.0.0
 *
 * @param string $string Content to check for bad protocols
 * @param string $allowed_protocols Allowed protocols
 * @return string Sanitized content
 */
function wp_kses_bad_protocol_once($string, $allowed_protocols)
{
    global $_kses_allowed_protocols;
    $_kses_allowed_protocols = $allowed_protocols;
    $string2 = preg_split('/:|:|:/i', $string, 2);
    if (isset($string2[1]) && !preg_match('%/\\?%', $string2[0])) {
        $string = wp_kses_bad_protocol_once2($string2[0]) . trim($string2[1]);
    } else {
        $string = preg_replace_callback('/^((&[^;]*;|[\\sA-Za-z0-9])*)' . '(:|:|&#[Xx]3[Aa];)\\s*/', 'wp_kses_bad_protocol_once2', $string);
    }
    return $string;
}
開發者ID:bi0xid,項目名稱:bach,代碼行數:24,代碼來源:functions.kses.php


注:本文中的wp_kses_bad_protocol_once2函數示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。