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

检查字符串中是否有外链

高洛峰
高洛峰原创
2016-10-21 10:30:451146浏览

检查字符串中是否有外链

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

声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn

相关文章

查看更多