gluon-web-remote

Web remote Administration for big size of gluon routers
git clone git://archive.git.mtrnord.blog/MTRNord/gluon-web-remote.git
Log | Files | Refs | README

source3.php (305B)


      1 <?php
      2 // This file is example#1
      3 // from http://www.php.net/manual/en/function.get-included-files.php
      4 
      5 include 'test1.php';
      6 include_once 'test2.php';
      7 require 'test3.php';
      8 require_once 'test4.php';
      9 
     10 $included_files = get_included_files();
     11 
     12 foreach ($included_files as $filename) {
     13     echo "$filename\n";
     14 }