我有这段代码,但是当它输入ips.text时,它只会检查第一个IP,即数字0,而剩下的其他IP地址不会验证它们,因此我需要帮助。
$ipArray = file('ips.txt');
foreach ($ipArray as $ipTest) {
if (substr_count($_SERVER['REMOTE_ADDR'],trim($ipTest)) != "0") {
die("HELLO IP LOCKED");
}
else {
header('Location: http://www.google.com/');
};
}
header('Content-Type: text/html; charset=UTF-8'); {
$archivo="ips.txt"; $proceso=fopen($archivo,"a") or die ("error en el sistema");
$ip= $_SERVER['REMOTE_ADDR']; $fecha= date("d/m/y");
$datos="".$ip."\n";
fwrite($proceso,$datos);
fclose($proceso);
}
答案 0 :(得分:0)
docs = collection_ref.order_by(date', direction=firestore.Query.ASCENDING).limit(10).get()
希望这会有所帮助。