Maison >类库下载 >PHP类库 >检查字符串中是否有外链

检查字符串中是否有外链

高洛峰
高洛峰original
2016-10-21 10:30:451174parcourir

检查字符串中是否有外链

<?php
/**
 * all_external_link 检测字符串是否包含外链
 * @param  string  $text 文字
 * @param  string  $host 域名
 * @return boolean       false 有外链 true 无外链
 */
function all_external_link($text = &#39;&#39;, $host = &#39;&#39;) {
    if (empty($host)) $host = $_SERVER[&#39;HTTP_HOST&#39;];
    $reg = &#39;/http(?:s?):\/\/((?:[A-za-z0-9-]+\.)+[A-za-z]{2,4})/&#39;;
    preg_match_all($reg, $text, $data);
    $math = $data[1];
    foreach ($math as $value) {
        if($value != $host) return false;
    }
    return true;
}
?>

Déclaration:
Le contenu de cet article est volontairement contribué par les internautes et les droits d'auteur appartiennent à l'auteur original. Ce site n'assume aucune responsabilité légale correspondante. Si vous trouvez un contenu suspecté de plagiat ou de contrefaçon, veuillez contacter admin@php.cn
Article précédent:生成随即数,不足补零Article suivant:php字符串处理内置函数

Articles Liés

Voir plus