diff options
author | Lorry Tar Creator <lorry-tar-importer@baserock.org> | 2013-03-14 05:42:27 +0000 |
---|---|---|
committer | <> | 2013-04-03 16:25:08 +0000 |
commit | c4dd7a1a684490673e25aaf4fabec5df138854c4 (patch) | |
tree | 4d57c44caae4480efff02b90b9be86f44bf25409 /ext/standard/tests/general_functions/get_included_files.phpt | |
download | php2-master.tar.gz |
Imported from /home/lorry/working-area/delta_php2/php-5.4.13.tar.bz2.HEADphp-5.4.13master
Diffstat (limited to 'ext/standard/tests/general_functions/get_included_files.phpt')
-rw-r--r-- | ext/standard/tests/general_functions/get_included_files.phpt | 63 |
1 files changed, 63 insertions, 0 deletions
diff --git a/ext/standard/tests/general_functions/get_included_files.phpt b/ext/standard/tests/general_functions/get_included_files.phpt new file mode 100644 index 0000000..e7e1ed5 --- /dev/null +++ b/ext/standard/tests/general_functions/get_included_files.phpt @@ -0,0 +1,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===
\ No newline at end of file |