php短網址超簡單代碼

來源:互聯網
上載者:User
php短網址超簡單代碼
系統內容:
php,apache2,linux

產生php短網址的操作:
把代碼複製到index.php放在一個只有1個字元(如u)作為檔案夾名的二級目錄中。
為此目錄增加寫入權限,圖省事就chmod 777 u (根目錄也行,為避免影響別的檔案可能要改改代碼)

網址產生結果:
把http://www.heimaolianmeng.com/heimaoseojishu/變成http://127.0.0.1/u/1
php產生短網址的原理:
1,通過form post擷取要變短的url
2,把url放在一個javascript內寫入檔案,檔案名稱按數字增長。javascript的作用就是跳轉到指定的url

可最佳化:
如果可以設定次層網域,那就把次層網域指向那個目錄就好了,就不用多輸入一個 u/。

代碼:


程式碼範例:



Shorten URL


URL to be shortened: (must include protocol like http:// or https:// etc.)







if (isset($_POST['url'])) {
$origin = $_POST['url'];
if (strlen($origin) > 10) {
$filename = count(scandir('.')) - 3; // strip php self . ..
file_put_contents($filename,
'');
$shortened = "http://".$_SERVER['HTTP_HOST'].dirname($_SERVER['PHP_SELF']).'/'.$filename;
echo 'Original URL is
'.$origin.'
'
.'Shortened URL is
'.$shortened.'';
} else {
echo "The URL you entered is NOT valid.";
}
}
?>


產生以數字為檔案名稱的檔案:


程式碼範例:
  • 聯繫我們

    該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.