ID: 16150 Updated by: [EMAIL PROTECTED] Reported By: [EMAIL PROTECTED] -Status: Bogus +Status: Open Bug Type: Scripting Engine problem Operating System: Apache/1.3.23 (Unix) PHP/4.1.2 m PHP Version: 4.1.2 New Comment:
Sorry, I misread the report. include_once() shouldn't open and include the file twice. Anyway, you shouldn't use include_once to grab data from a remote file, use fopen() & co for that. Previous Comments: ------------------------------------------------------------------------ [2002-03-19 04:17:19] [EMAIL PROTECTED] The bug system is not the appropriate forum for asking support questions. For a list of a range of more appropriate places to ask for help using PHP, please visit http://www.php.net/support.php ------------------------------------------------------------------------ [2002-03-18 13:30:02] [EMAIL PROTECTED] It seems that the "include_once" function no longer works? <?php include_once("http://www.mySite.com/getUserID"); include_once("http://www.mySite.com/getUserID"); ?> "getUserID" contains something to the effect of... <?php function getID() { //create empty array $id = array(); ....... return ($id); } ?> Upon execution of the second "include_once" you'll receive an error.... Fatal error: Cannot redeclare getID() in http://www.mySite.com/getUserID on line 2 ------------------------------------------------------------------------ -- Edit this bug report at http://bugs.php.net/?id=16150&edit=1
