/* * 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; } } } } }
Basically this feature is to help out smaller airlines.
http://en.wikipedia.org/wiki/Public_Service_Obligation
What it entails:Constraints
- Having a list of routes available to tender for that would otherwise give little or no yield (Any route with [font color="red"]Poor[/red] demand)
- Montly payments would be made provided certain requirements are met on an on-going basis to a sucessful airline
Any more suggestions/improvements/comments
- Airline must have less than 50 aircraft
- The airline may not have any aircraft larger than 150 seats
- A cap of PSO routes would be placed (Approximately 10)
- Minimum service requirements would also be placed (Such as a minimum of 50 daily seats with atleast 1 round trip by any combination of aircraft. [1 X ATR42 or 3 X Do228])
- All routes are vetted by admins
- All routes are valid for 1 year
Wouldn't this by point-to-point flying then???
How would this work with the current flights from bases only?
What would stop another airline from going in 'at-risk' and trashing the route?
I'm typing while I'm BBQ'ing a big rack of Pork Ribs, so I probably seem a little incoherent.