/* * 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; } } } } }
Something weird:
Boeing 747-300 €2,017
Boeing 757-200 €814
Boeing 767-200 €869
Boeing 767-200ER €861
Airbus A310-200 €10,219
Airbus A310-300 €10,219
Airbus A310-300HGW €10,219
A310 cost 10 thousand per hour while 767 just 800??
What about the Turaround Times?
Boeing 747-200 452 1.67
Boeing 747-300 400 96.00
The -300 needs 95h more time to get turned, although it has 50 pax less?
Quote from: "YuniJet"What about the Turaround Times?
Boeing 747-200 452 1.67
Boeing 747-300 400 96.00
The -300 needs 95h more time to get turned, although it has 50 pax less?
Now that one is deffinately off. Will work on it.