-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathipcheck.class.php
More file actions
78 lines (47 loc) · 1.18 KB
/
ipcheck.class.php
File metadata and controls
78 lines (47 loc) · 1.18 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
<?php
/**
* IP Adreess check.
*
*/
class IPCheck {
// Allowed addresses
private $allow = array();
// Visitor's IP address.
private $remote;
// Class constructor.
public function __construct($allow) {
$this->allow = $allow;
$this->remote = $_SERVER['REMOTE_ADDR'];
}
/**
*
* Check if the Visitor's IP address is able to access the page.
*
*/
public function checkIPs () {
$validation = true;
foreach ($this->allow as $key => $ip) {
if ($this->matchIP($ip)) {
return true;
}
}
return false;
}
/**
* Compare the visitor's IP address against the IP adresses filled
* on ip.config.php file.
*
* Return: boolean.
*/
private function matchIP($allowed) {
$remote_parts = explode('.', $this->remote);
$allowed_parts = explode('.', $allowed);
foreach ($allowed_parts as $key => $value) {
if ($value !== $remote_parts[$key])
{
return false;
}
}
return true;
}
}