13 Zeilen
		
	
	
		
			Kein EOL
		
	
	
		
			378 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			13 Zeilen
		
	
	
		
			Kein EOL
		
	
	
		
			378 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
$country = $_GET['langId'];
 | 
						|
 | 
						|
if (preg_match('/^[A-Z0-9_]+\z/i', $country)) {
 | 
						|
    define('DS', DIRECTORY_SEPARATOR);
 | 
						|
    $languageDir = realpath(dirname(__FILE__) . '/../application/language');
 | 
						|
    $image = $languageDir . DS . $country . DS . 'flag.gif';
 | 
						|
 | 
						|
    if (file_exists($image)) {
 | 
						|
        header('Content-Type: image/gif');
 | 
						|
        readfile(realpath($image));
 | 
						|
    }
 | 
						|
} |