summaryrefslogtreecommitdiff
path: root/ext/standard/tests/general_functions/get_included_files.phpt
blob: e6d00a56a1bc99987cf10b459ad55c625866df43 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
--TEST--
Test get_include_files() function
--INI--
include_path=.
--FILE--
<?php
/* Prototype: array get_included_files  ( void  )
 * Description: Returns an array with the names of included or required files

*/

echo "*** Testing get_included_files()\n";

echo "\n-- List included files at start --\n";
var_dump(get_included_files());

include(dirname(__FILE__)."/get_included_files_inc1.inc");
echo "\n-- List included files atfter including inc1 -\n";
var_dump(get_included_files());

include(dirname(__FILE__)."/get_included_files_inc2.inc");
echo "\n-- List included files atfter including inc2 which will include inc3 which includes inc1 --\n";
var_dump(get_included_files());

echo "\n-- Error cases --\n";
var_dump(get_included_files(true));

?>
===DONE===
--EXPECTF--
*** Testing get_included_files()

-- List included files at start --
array(1) {
  [0]=>
  string(%d) "%sget_included_files.php"
}

-- List included files atfter including inc1 -
array(2) {
  [0]=>
  string(%d) "%sget_included_files.php"
  [1]=>
  string(%d) "%sget_included_files_inc1.inc"
}

-- List included files atfter including inc2 which will include inc3 which includes inc1 --
array(4) {
  [0]=>
  string(%d) "%sget_included_files.php"
  [1]=>
  string(%d) "%sget_included_files_inc1.inc"
  [2]=>
  string(%d) "%sget_included_files_inc2.inc"
  [3]=>
  string(%d) "%sget_included_files_inc3.inc"
}

-- Error cases --

Warning: get_included_files() expects exactly 0 parameters, 1 given in %s on line %d
NULL
===DONE===