登录 注册

检查字符串中是否有外链

收藏
[PHP] 标签: 2012-10-31 12:47
原始代码 全屏查看 0评 / 0藏 / 4887阅  跳至 / 16行
/**
 * all_external_link 检测字符串是否包含外链
 * @param  string  $text 文字
 * @param  string  $host 域名
 * @return boolean       false 有外链 true 无外链
 */
function all_external_link($text = '', $host = '') {
    if (empty($host)) $host = $_SERVER['HTTP_HOST'];
    $reg = '/http(?:s?):\/\/((?:[A-za-z0-9-]+\.)+[A-za-z]{2,4})/';
    preg_match_all($reg, $text, $data);
    $math = $data[1];
    foreach ($math as $value) {
        if($value != $host) return false;
    }
    return true;
}

最新评论

  · · · · · ·  (共0条)

目前还没有评论

登录后您才可以发表评论。 马上登录 立即注册
cottage
2012-02-29加入
一段精湛的代码,天涯何处寻知音!
Back to Top