php在線代理轉(zhuǎn)向代碼
更新時間:2012年05月05日 00:51:51 作者:
這個代碼不是自己實現(xiàn)代理的功能 只是將輸入的Url進行簡單的處理之后轉(zhuǎn)向一個代理網(wǎng)站,速度不錯
復(fù)制代碼 代碼如下:
<?php
if ($_REQUEST['url'])
{
header('Location:http://bcd.allowed.org/0/?url='.base64_encode(strrev($_REQUEST['url'])));
}
else
{
echo "<form method='POST' action='proxy.php'>
url:<input name='url' type='text' value=\"\" />
<input type='submit' value=\"go\" />
</form>";
}
?>
相關(guān)文章
淺談laravel-admin form中的數(shù)據(jù),在提交后,保存前,獲取并進行編輯
今天小編就為大家分享一篇淺談laravel-admin form中的數(shù)據(jù),在提交后,保存前,獲取并進行編輯,具有很好的參考價值,希望對大家有所幫助。一起跟隨小編過來看看吧2019-10-10
PHP性能優(yōu)化工具篇Benchmark類調(diào)試執(zhí)行時間
這是PHP性能優(yōu)化系列第二期,如何使用PEAR工具類Benchmark逐行獲取代碼或函數(shù)的執(zhí)行時間2011-12-12

