文章目录
本文最后更新于 2022-10-21,已超过 365 天未更新,内容可能已失效。

核心代码:

$max_allow_links = 100; // 最大许可检查的链接数目
function check_add_links_before($url, $timeout = 30) {
    if (function_exists('curl_init')) {
        $ch = curl_init();
        curl_setopt($ch, CURLOPT_URL, $url);
        curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
        curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, $timeout);
        $file_contents = curl_exec($ch);
        curl_close($ch);
    } else if (ini_get('allow_url_fopen') == 1 || strtolower(ini_get('allow_url_fopen')) == 'on') {
        $file_contents = @file_get_contents($url);
    } else {
        $file_contents = '';
    }
    return $file_contents;
}

本站效果图:

本着懒得原则,就申请友情链接时就验证对方是否添加本站的链接!!要不我们审核时要先去对方网站看看!

CC 许可协议
署名-非商业性使用-相同方式共享 4.0 国际 了解协议
文章链接:https://zptheme.com/5514.html
本文作者:子佩·来源:子佩工作室

除非注明,子佩工作室 文章均为原创,转载请以链接形式标明本文地址。

相关推荐

登录后即可发表评论

社交账号登录

全部评论 (2)

  • 比我差的人还没放弃,比我好的人仍在努力,我就更没资格说我无能为力!

    2 年前
  • 子佩 幸运儿 · 参与过抽奖活动创始成员 · 站点上线 30 天内注册+1

    你就是我行进中的方向,学习的楷模,我辈当崇拜之!

    4 年前
/