/*
* 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 - A few Il2 screenshots
Airline Mogul Forum
Non-Airline Mogul => Flight Simulators & Online Flying => Topic started by: Virgin Serbia on July 22, 2008, 07:51:31 pm
I found a few screenshots from Il2 that you might think was interesting: Luftwaffe P-40 vs. VVS TB-3 (http://i38.photobucket.com/albums/e123/B777LR/Combat%20flight%20simulator/p40luft.jpg) (http://i38.photobucket.com/albums/e123/B777LR/Combat%20flight%20simulator/P-40luftwaf.jpg) Heinkel Lerche on a German carrier (http://i38.photobucket.com/albums/e123/B777LR/Combat%20flight%20simulator/Carrierscenes1946.jpg) (http://i38.photobucket.com/albums/e123/B777LR/Combat%20flight%20simulator/Carrierscenes19462-1.jpg) (http://i38.photobucket.com/albums/e123/B777LR/Combat%20flight%20simulator/Carrierscenes19462.jpg) Me-163 (Finnish i beleive) (http://i38.photobucket.com/albums/e123/B777LR/Combat%20flight%20simulator/Pilotsview2.jpg) (http://i38.photobucket.com/albums/e123/B777LR/Combat%20flight%20simulator/reargunnersview3.jpg) (http://i38.photobucket.com/albums/e123/B777LR/Combat%20flight%20simulator/ra.jpg) (http://i38.photobucket.com/albums/e123/B777LR/Combat%20flight%20simulator/Pilotsview.jpg) Swept blade Bf-109 :lol: Actually, i just switched off the engine and glided close enough to the ground for them to bend, before starting the engine again :roll: (http://i38.photobucket.com/albums/e123/B777LR/Combat%20flight%20simulator/sweptprop2.jpg) (http://i38.photobucket.com/albums/e123/B777LR/Combat%20flight%20simulator/sweptprop.jpg) And a few misc. (http://i38.photobucket.com/albums/e123/B777LR/Combat%20flight%20simulator/CR-42.jpg) (http://i38.photobucket.com/albums/e123/B777LR/Combat%20flight%20simulator/lercheIII.jpg) (http://i38.photobucket.com/albums/e123/B777LR/Combat%20flight%20simulator/262.jpg) (http://i38.photobucket.com/albums/e123/B777LR/Combat%20flight%20simulator/a239.jpg)