-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathautoload.php
55 lines (54 loc) · 1.97 KB
/
autoload.php
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
<?php
/**
* package ipTools
*
* This file is a part of ipTools
*
* Provides IP v4/v6
* validation:
* IP in IP/network(cidr) ranges
* and util services:
* is valid IP,
* expand/compress IP number
* IP number to binary and reverse
* netmask/cidr etc
*
* With courtesy of and inspiration from Paul Gregg <[email protected]>
* and the excellent functions decbin32 and ip_in_range
*
* copyright (c) 2019-21 Kjell-Inge Gustafsson, kigkonsult, All rights reserved
* Link https://kigkonsult.se
* Package ipTools
* License Subject matter of licence is the software ipTools.
* The above copyright, link, package and version notices and
* this licence notice shall be included in all copies or
* substantial portions of the ipTools.
*
* ipTools is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published
* by the Free Software Foundation, either version 3 of the License,
* or (at your option) any later version.
*
* ipTools is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with ipTools. If not, see <https://www.gnu.org/licenses/>.
*/
spl_autoload_register(
function( $class ) {
static $PREFIX = 'Kigkonsult\\IpTools';
static $FMT = '%1$s%2$ssrc%2$s%3$s.php';
if( 0 != strncasecmp( $PREFIX, $class, 18 ) ) {
return false;
}
$file = sprintf( $FMT, __DIR__, DIRECTORY_SEPARATOR, substr( $class, 18 ));
if( file_exists( $file )) {
include $file;
return true;
}
return false;
}
);