Home >类库下载 >PHP类库 >Check if there are external links in the string

Check if there are external links in the string

高洛峰
高洛峰Original
2016-10-21 10:30:451147browse

Check if there are external links in the string

<?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;
}
?>

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Related articles

See more