/*
* 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 - Next reset
Airline Mogul Forum
Airline Mogul => General Chat => Topic started by: iranair777 on August 25, 2007, 10:43:55 am
-
Does anyone have/know the type of aircraft that are going to be in the next round and how long before this round finishes?
-
When the game would jump into the future. Than it's reset to 1960- 707 HERE WE COME!!!
-
Dec 24 2007 is the last game day of this round.
1960 is next...
Bring on the Convairs, Lockheeds, and Douglas(pre-McDonnell) aircraft. SO many more interesting aircraft. Not just the same B or A fleets.
-
Doing a little research....
Beech 18
BAC 111
Lockheed L-188 Electra
An-24
Boeing 720
DHC-4 Caribou
Do-28
We should see these and some more significant airliners (VC-10,B707,DC-8,HPH Herald)
And if you played a couple of rounds ago, you'll remember this one.....
the Fokker F-27 Friendship.
-
ok thanks