龙盟编程博客 | 无障碍搜索 | 云盘搜索神器
快速搜索
主页 > web编程 > php编程 >

php 检查字符串中是否有外链

时间:2014-07-19 02:10来源:网络整理 作者:网络 点击:
分享到:
检查字符串中是否有外链 [代码片段(17行)]
/**
 * is_external_link 检测字符串是否包含外链
 * @param  string  $text 文字
 * @param  string  $host 域名
 * @return boolean       false 有外链 true 无外链
 * http://blog.qita.in
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;
}
//该片段来自于http://outofmemory.cn
精彩图集

赞助商链接