September 2001
Intermediate to advanced
768 pages
32h 45m
English
array get_included_files(void)
Gets the list of files used by include() .
Returns:
Array of included files
Description:
Returns an array containing the names of files that have been included in the current script, using either the include() or include_once() function.
Version:
Existing since version 4.0
See also:
get_required_files()
Example:
require("testinclude.php");
print_r(get_included_files());
|
Read now
Unlock full access