/vendor/phpunit/php-token-stream/tests/_fixture/source3.php
https://bitbucket.org/alan_cordova/api-sb-map · PHP · 14 lines · 9 code · 3 blank · 2 comment · 0 complexity · a5cd42729c1bcb391a76f649774244db MD5 · raw file
- <?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";
- }