13 lines
		
	
	
		
			314 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			314 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| function get_protocol() {
 | |
| 	$protocol = "http";
 | |
| 	if ( (isset($_SERVER['HTTPS']) && !empty($_SERVER['HTTPS']
 | |
| 			&& $_SERVER['HTTPS'] !== 'off') ||
 | |
| 			$_SERVER['SERVER_PORT'] == 443) )
 | |
| 		$protocol = "https";
 | |
| 	return $protocol."://";
 | |
| }
 | |
| $protocol = get_protocol();
 | |
| $base_url = $protocol.$_SERVER['HTTP_HOST'];
 | |
| ?>
 |