/*
* Patch for filter_var()
*/
if(!function_exists('filter_var')){
define('FILTER_VALIDATE_IP', 'ip');
define('FILTER_FLAG_IPV4', 'ipv4');
define('FILTER_FLAG_IPV6', 'ipv6');
define('FILTER_VALIDATE_EMAIL', 'email');
define('FILTER_FLAG_EMAIL_UNICODE', 'unicode');
function filter_var($variable, $filter, $option = false){
if($filter == 'ip'){
if($option == 'ipv4'){
if(preg_match("/(\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3})/", $variable, $matches)){
$variable = $matches[1];
return $variable;
}
}
if($option == 'ipv6'){
if(preg_match("/\s*(([:.]{0,7}[0-9a-fA-F]{0,4}){1,8})\s*/", $variable, $matches)){
$variable = $matches[1];
return $variable;
}
}
}
if($filter == 'email'){
if($option == 'unicode' || $option == false){
if(preg_match("/\s*(\S*@\S*\.\S*)\s*/", $variable, $matches)){
$variable = $matches[1];
return $variable;
}
}
}
}
}
Eventy i Promocje
Eventy i Promocje
- Najnowsze promocje i wydarzenia trwające na serwerach oficjalnych
|
|
|
0 Odpowiedzi
12518 Wyświetleń
|
Grudzień 07, 2016, 04:52:42 pm
wysłana przez Naito
|
|
|
|
0 Odpowiedzi
3552 Wyświetleń
|
Grudzień 07, 2016, 04:34:07 pm
wysłana przez Naito
|
|
|
|
6 Odpowiedzi
4333 Wyświetleń
|
Grudzień 07, 2016, 01:54:35 pm
wysłana przez Naito
|
|
|
|
10 Odpowiedzi
8393 Wyświetleń
|
Wrzesień 02, 2016, 12:40:39 pm
wysłana przez Shanique
|
|
|
|
1 Odpowiedzi
4106 Wyświetleń
|
Maj 27, 2016, 12:12:05 pm
wysłana przez RedWind
|