/*
* 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;
}
}
}
}
}
Ogłoszenia
Ogłoszenia
- Informacje dotyczące forum i strony, z którymi należy się zapoznać
Wątek przyklejony |
|
|
|
95 Odpowiedzi
68187 Wyświetleń
|
Sierpień 16, 2024, 11:40:31 am
wysłana przez Soulern
|
|
|
|
0 Odpowiedzi
8198 Wyświetleń
|
Styczeń 06, 2012, 08:20:16 pm
wysłana przez Soulern
|
|
|
|
6 Odpowiedzi
10905 Wyświetleń
|
Maj 15, 2011, 08:49:44 pm
wysłana przez Beatronix
|
|
|
|
0 Odpowiedzi
12065 Wyświetleń
|
Czerwiec 24, 2010, 01:14:59 pm
wysłana przez Polgara
|
Normalny wątek |
|
|
|
0 Odpowiedzi
19803 Wyświetleń
|
Maj 21, 2018, 10:34:46 pm
wysłana przez Soulern
|