|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2002-03-19 04:17 UTC] sander@php.net
[2002-03-19 10:55 UTC] sander@php.net
[2002-03-19 12:01 UTC] dcourey at wizardcomputer dot com
[2002-08-17 14:57 UTC] iliaa@php.net
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Fri Nov 07 21:00:01 2025 UTC |
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