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! Quote 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. Quote 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() Quote 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
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.