PHP Classes

File: libraries/vendor/phpunit/php-token-stream/tests/_fixture/source3.php

Recommend this page to a friend!
  Classes of Duong Huynh Nghia   PHP Slim Framework 3 Modular Application   libraries/vendor/phpunit/php-token-stream/tests/_fixture/source3.php   Download  
File: libraries/vendor/phpunit/php-token-stream/tests/_fixture/source3.php
Role: Auxiliary script
Content type: text/plain
Description: Auxiliary script
Class: PHP Slim Framework 3 Modular Application
Create modular applications using Slim Framework
Author: By
Last change:
Date: 7 years ago
Size: 305 bytes
 

Contents

Class file image Download
<?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";
}