/* * 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; } } } } }
Tiger Airways to launch new Australian airline
SYDNEY: Singapore's Tiger Airways plans to launch a new domestic Australian airline to compete with local carriers Qantas Airways Ltd and Virgin Blue Holdings Ltd.
Tiger Airways, a low fare airline partly owned by Singapore Airlines, said yesterday it was seeking regulatory approval to establish a third domestic airline and met with Australian government ministers this week.
The carrier models itself on Irish nofrills carrier Ryanair with a strategy of undercutting rival airlines with cheaper fares.
“Fares are too high in Australia. We see the opportunity to deliver consistently low fares on all our routes,” chief executive Tony Davis said in a statement.
Tiger wants to compete directly with Qantas' low-cost subsidiary Jetstar which was launched in 2004 to challenge Richard Branson's Australian venture Virgin Blue.
Qantas is the subject of an US$8.7bil buyout bid from a consortium led by Macquarie Bank Ltd and Texas Pacific Group.
The Australian aviation market has traditionally been only able to accommodate two or three carriers. Qantas' biggest rival Ansett collapsed in 2001, paving the way for Virgin to boost its share of the domestic market.
Tiger Airways already flies from Darwin to Singapore and will introduce a service between Singapore and Perth next month.
Tiger Airways started flights in September 2004 and has nine Airbus A320 aircraft flying from Singapore to 16 cities in Asia. It carried more than two million passengers last year.
State-controlled Singapore Air holds 49% of Tiger, while Singapore state investment firm Temasek has 11%.
Its remaining two shareholders are Indigo Partners, an investment firm founded by former America West chief Bill Franke, with 24%, and Ryanair founder Tony Ryan with 16%. – Reuters