1
0
mirror of https://github.com/e107inc/e107.git synced 2025-10-14 14:34:51 +02:00
Files
php-e107/vendor/phpunit/php-token-stream/tests/_fixture/source3.php
2018-02-06 03:18:31 -06:00

15 lines
305 B
PHP

<?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";
}