/*
* 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;
}
}
}
}
}
Print Page - Flying around the West of Ireland
Airline Mogul Forum
Non-Airline Mogul => General Chat => Topic started by: StephenM on March 25, 2007, 10:09:01 pm
I went for my first flight only own that was cross country on Saturday, took a trip over to my home town and to some places I knew, anyway heres the best photo's I could get. (http://airlinemogul.com/ballina_mar07/100_1633.jpg) (http://airlinemogul.com/ballina_mar07/100_1634.jpg) (http://airlinemogul.com/ballina_mar07/100_1635.jpg) (http://airlinemogul.com/ballina_mar07/100_1636.jpg) (http://airlinemogul.com/ballina_mar07/100_1637.jpg) (http://airlinemogul.com/ballina_mar07/100_1638.jpg) (http://airlinemogul.com/ballina_mar07/100_1639.jpg) (http://airlinemogul.com/ballina_mar07/100_1640.jpg) (http://airlinemogul.com/ballina_mar07/100_1641.jpg) (http://airlinemogul.com/ballina_mar07/100_1642.jpg) (http://airlinemogul.com/ballina_mar07/100_1643.jpg) (http://airlinemogul.com/ballina_mar07/100_1644.jpg)
Nice :D :mrgreen:
Which one of those bungalows is your house? 8)