|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2013-08-06 14:00 UTC] johannes@php.net
-Status: Open
+Status: Not a bug
[2013-08-06 14:00 UTC] johannes@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sun Dec 14 19:00:01 2025 UTC |
Description: ------------ file--1 $myobject = new object1(); class object1{ ... } file--2 $myobject = new object2(); include(file--1) class object2{ ... } so the name of variable of instanties arr the same but no error message is write so i was many time watching wat there was wrong (the file was to big to place them here) Test script: --------------- file--1 $myobject = new object1(); class object1{ ... } file--2 $myobject = new object2(); include(file--1) class object2{ ... }