我的作法
http://web.jhes.ttct.edu.tw/~lifetype/blog/1/4/2007/04/01/8需要自行修改兩個地方
- 紅色的改成你要檢查的IP的字串長度,如果檢查 210. 就改成 4,如果檢查210.240. 就改成 8
- 綠色的改成你要檢查的IP內容
用下載的話文件是utf8編碼
另外想順便求助一件事情,我在lifetype1.2之中貼上程式碼,觀看該篇文章的時候,裡面的
Header("Refresh:5;URL=summary.php"); 真的會被執行 Q_Q
<?php
include( PLOG_CLASS_PATH."class/net/client.class.php");
$myIP = new Client();
$ip = substr($myIP->getIp(), 0,
12);
if (strcmp($ip,
'210.240.136.') == 0){
echo "Your IP:". $myIP->getIp() . "<br>";
echo 'IP Check OK';
} else {
// Header("Location: summary.php");
Header("Refresh:5;URL=summary.php");
echo '<meta http-equiv="refresh" content="5; URL=summary.php">';
echo "不開放外人註冊<br>";
exit;
}
?>