From 7a5a06289c8847e4d11427a4b8baaa84271860ff Mon Sep 17 00:00:00 2001 From: "Jesus M. Castagnetto" Date: Tue, 11 Jul 2000 08:08:04 +0000 Subject: [PATCH] Added stumps for require_once() and include_once() git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@28071 c90b9560-bf6c-de11-be94-00142212c4b1 --- language/control-structures.xml | 36 +++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) diff --git a/language/control-structures.xml b/language/control-structures.xml index 02ba7aeceb..ba7233fafa 100644 --- a/language/control-structures.xml +++ b/language/control-structures.xml @@ -1054,6 +1054,42 @@ include ("file.inc"); /* $varone and $vartwo will be available in file.inc */ + + <function>require_once</function> + + TODO + The require_once statement replaces itself with + the specified file, much like the C preprocessor's + #include works. + + + Seel also: require, + include, include_once, + get_required_files, + get_included_files + + + + + <function>include_once</function> + + TODO + The include_once statement replaces itself with + the specified file, much like the C preprocessor's + #include works. + + + Seel also: require, + include, require_once, + get_required_files, + get_included_files + + + + + + +