-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathInput.php
More file actions
126 lines (94 loc) · 2.36 KB
/
Input.php
File metadata and controls
126 lines (94 loc) · 2.36 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
<?php
namespace App;
class Input {
/**
* Must take @bool to proceed
* refer to getMagicQuotes() method
*
* @var boolean
*/
private static $magic_quotes_exists;
public static function exists($action = 'post') {
switch ($action) {
case 'post':
return (!empty($_POST)) ? true : false;
break;
case 'get':
return (!empty($_GET)) ? true : false;
break;
default:
return false;
}
}
public static function get($name, $purify = false) {
if (isset($_POST[$name])) {
$var = $_POST[$name];
return self::verify($var, $purify);
}else if (isset($_GET[$name])) {
$var = $_GET[$name];
return self::verify($var, $purify);
}
return false;
}
public static function verify($input, $purify = false) {
$input = is_array($input) ? array_map('self::verify', $input) : static::sanitize($input, $purify);
return $input;
}
public static function check($name, $in = '') {
$in = strtolower($in);
switch ($in) {
case 'get':
if (isset($_GET[$name])) {
return true;
}
break;
case 'post':
if (isset($_POST[$name])) {
return true;
}
break;
default:
if (isset($_POST[$name])) {
return true;
}else if (isset($_GET[$name])) {
return true;
}
}
return false;
}
public function sanitize($string, $purify = false)
{
$string = trim($string);
if ($purify==true)
$string = stripslashes(strip_tags($string));
$string = htmlentities($string, ENT_QUOTES, "UTF-8");
return $string;
}
public function getMagicQuotes() {
if(function_exists('get_magic_quotes_gpc')) {
self::$magic_quotes_exists = true;
return self::$magic_quotes_exists;
}
}
/**
* Convert post request into url param string
*
* @param array $stream
* @param string $initParam
* @return string $params
*/
public function splitStream($stream, $initParam = '') {
$params = !empty($initParam) ? $initParam : '';
$magicQuotesExist = self::getMagicQuotes();
foreach ($stream as $key => $value) {
if ($magicQuotesExist == true && get_magic_quotes_gpc() == 1) {
$value = urlencode(stripslashes($value));
}else {
$value = urlencode($value);
}
$params .= !empty($params) ? '&' : '';
$params .= "$key=$value";
}
return $params;
}
}