radarrplexorganizrnginxsonarrdashboardserverhomepagesabnzbdheimdallembycouchpotatonzbgetbookmarkapplication-dashboardmuximuxlandingpagestartpagelandinghtpc
		
		
		
		
			You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							14 lines
						
					
					
						
							305 B
						
					
					
				
			
		
		
		
			
			
			
				
					
				
				
					
				
			
		
		
	
	
							14 lines
						
					
					
						
							305 B
						
					
					
				
								<?php
							 | 
						|
								// This file is example#1
							 | 
						|
								// from http://www.php.net/manual/en/function.get-included-files.php
							 | 
						|
								
							 | 
						|
								include 'test1.php';
							 | 
						|
								include_once 'test2.php';
							 | 
						|
								require 'test3.php';
							 | 
						|
								require_once 'test4.php';
							 | 
						|
								
							 | 
						|
								$included_files = get_included_files();
							 | 
						|
								
							 | 
						|
								foreach ($included_files as $filename) {
							 | 
						|
								    echo "$filename\n";
							 | 
						|
								}
							 | 
						|
								
							 |