robcrozier Posted March 3, 2009 Share Posted March 3, 2009 Hi. H'm getting this error: Fatal error: Cannot re-declare class myClass Which obviously is trying to indicate that the class has been declared before. It has not however!? The class is declared once in my header.php file and then included at the top of every script. Has anyone ever come across this before and managed to find out whats causing it. It seems to be stopping my class from working properly too if id use a 'class_exists()' on it to get rid of that error! Thanks for any help in advance! Link to comment https://forums.phpfreaks.com/topic/147710-fatal-error-cannot-redeclare-class/ Share on other sites More sharing options...
waynew Posted March 3, 2009 Share Posted March 3, 2009 Make sure that you're not including/requiring the same class file twice. Link to comment https://forums.phpfreaks.com/topic/147710-fatal-error-cannot-redeclare-class/#findComment-775349 Share on other sites More sharing options...
phant0m Posted March 3, 2009 Share Posted March 3, 2009 Have a look at require_once() resp. include_once() Link to comment https://forums.phpfreaks.com/topic/147710-fatal-error-cannot-redeclare-class/#findComment-775362 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.