ID: 33579 Updated by: [EMAIL PROTECTED] Reported By: aarondoom at cookiedoom dot com -Status: Open +Status: Bogus Bug Type: Unknown/Other Function Operating System: Gentoo Linux 1.6.12 PHP Version: 4.3.11 New Comment:
Sorry, but your problem does not imply a bug in PHP itself. For a list of more appropriate places to ask for help using PHP, please visit http://www.php.net/support.php as this bug system is not the appropriate forum for asking support questions. Due to the volume of reports we can not explain in detail here why your report is not a bug. The support channels will be able to provide an explanation for you. Thank you for your interest in PHP. Works just fine with all versions I can test right now (4.3, 4.4, 5.0, 5.1 etc.). Previous Comments: ------------------------------------------------------------------------ [2005-07-05 23:37:44] aarondoom at cookiedoom dot com Description: ------------ When a parent document requires a source file and then requires a second file that requires the same as above it cannot access the functions in the already required file from the parent, but cannot use or redefine the functions that are required. Using code that "if (!defined("_FUNCS_INC_")) { define("_FUNCS_INC_", true); function Bleh($Bloop) { return $Bloop; } } // _FUNCS_INC_". This is a problem because the _FUNCS_INC_ is defined as well as the functions defined inside of the scope of the document though function_exists will return false and calling the function will obviously fail for that reason, I cannot redefine those functions in the sub-document or I'll get "Cannot redefine function bleh"... even though I can't use it. Though it is easy enough to work around the issue (With the "if (!defined())" stuff require_once doesn't even make it work BTW) I'm reorganizing several hundred files, at least 1/3 of which are includes which need to be re-ordered. Any help would be greatly appreciated. Reproduce code: --------------- <?php // Funcs.inc if (!defined("_FUNCS_INC_")) { define("_FUNCS_INC_", true); function Bleh() { printf("Blah\n"); } } // _FUNCS_INC_ ?> <?php // DB.inc require("Funcs.inc"); Bleh(); ?> <?php // Header.inc require("Funcs.inc"); require("DB.inc"); Bleh(); // Won't error ?> Expected result: ---------------- Blah\n Blah\n Actual result: -------------- Fatal error: Call to undefined function: bleh() in /var/www/localhost/includes/DB.inc on line 3 ------------------------------------------------------------------------ -- Edit this bug report at http://bugs.php.net/?id=33579&edit=1