/* * 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; } } } } }
|Departure City |São Paulo/Guarulhos international airport |Bogotá/El Dorado international airport |São Paulo/Congonhas Airport |Caracas/Simón Bolívar International Airport | |Arrival City |Bogotá/El Dorado international airport |São Paulo/Congonhas Airport |Caracas/Simón Bolívar International Airport |São Paulo/Guarulhos international airport | |Estimated Flight Length (hours:minutes:seconds) |5:54:54 |5:54:54 |5:59:42 |5:59:06 |
the flight length includes any delays at airports. so if the airports are busy, they will have delays which add on a certain amount of minuites (depending on how many flights fly out of that airport)
My calculation shows differently:
(http://dljpetrovic.users.sbb.co.yu/calc.png)
This is done in excel...here is the link where nwadeltaboy explained how to make one:
http://stephenm.org/smfforum/index.php?topic=7762.0
Then it can fly all 4 routes.....but....I just checked....you don't have a hub at Caracas/Simón Bolívar International Airport nor at Bogotá/El Dorado international airport...how you are able to create the second flight (Bogotá/El Dorado international airport - São Paulo/Congonhas Airport)?
Then it can fly all 4 routes.....but....I just checked....you don't have a hub at Caracas/Simón Bolívar International Airport nor at Bogotá/El Dorado international airport...how you are able to create the second flight (Bogotá/El Dorado international airport - São Paulo/Congonhas Airport)?
it isnt. Ask stephen about it. I remember a long time ago I tried to fly from tehran to SMX and I had the exact amount of time remaining on the aircraft but it wouldnt let me fly the route. I asked stephen about it and he said its cause there are delays on the ground at the airport. This was when I had about 100 aircraft flying from tehran on many routes right across the world.the flight length includes any delays at airports. so if the airports are busy, they will have delays which add on a certain amount of minuites (depending on how many flights fly out of that airport)
This is absolutely false.
it isnt. Ask stephen about it. I remember a long time ago I tried to fly from tehran to SMX and I had the exact amount of time remaining on the aircraft but it wouldnt let me fly the route. I asked stephen about it and he said its cause there are delays on the ground at the airport. This was when I had about 100 aircraft flying from tehran on many routes right across the world.the flight length includes any delays at airports. so if the airports are busy, they will have delays which add on a certain amount of minuites (depending on how many flights fly out of that airport)
This is absolutely false.
it isnt. Ask stephen about it.
:-\it isnt. Ask stephen about it.
Its actually false, even I didn't know. :lol: I must have planned it originally and thought I implemented it. :-[