PHP加密URL防止採集的方法執行個體

來源:互聯網
上載者:User
本文主要和大家分享PHP加密URL防止採集的方法執行個體,希望能協助到大家到大家。

網上有很多採集工具,他們是如何採集的。

這些網址都很有規律,都是(blog-)+ 數字 組成,採集很大程度上利用這個網址規律自動採集網頁。

如何更好的避免網站被採集?我們可以把網址中的(關鍵數字)部分加密一下。

供出加密方法,產生的加密網址短,穩定,非隨機數加密方式,對seo友好。演算法自行研究。

/** * 加密數字方法 *   echo idEncode(222); * @author uuleaf[<uuleaf#163.com>] 小葉 * @param int $int 要加密的數字 * @return string 加密後的字串 */function idEncode($int)  {      $str = md5($int);      $sarr = str_split($str);      $stai = (ord($str) + 8) % 10;      if ($stai == 0) $stai = 8;      $idstr = base_convert($int * $stai, 10, 32);      $str1 = substr($str, 10, 2);      $str2 = substr($str, 14, 2);      $str3 = substr($str, 18, 2);      return $str1 . $idstr . $str2 . $stai . $str3;  }  解密方法/** * 解密數字方法 *   echo idDncode(""); * @author uuleaf[<uuleaf#163.com>] 小葉 * @param string $str 要解密的數字 * @return int 解密後的數字 */function idDecode($str)  {      $idstr = substr(substr($str, 2), 0, -5);      $ji = base_convert($idstr, 32, 10);      $si = (int)substr($str, -3, -2);      return floor($ji / $si);  }

測試

  1. echo "加密前的網址:http://thinkphp.cn/blog-54.html";  echo "\n";  $encode_str = idEncode(54);  echo "加密後的網址:http://thinkphp.cn/blog-{$encode_str}.html";  echo "\n";  $decode_str = idDecode($encode_str);  echo "還原後的網址:http://thinkphp.cn/blog-{$decode_str}.html";


輸出結果

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.