PHP Fatal error: Cannot redeclare class
问题 Does anyone know what can cause this problem? PHP Fatal error: Cannot redeclare class 回答1: It means you've already created a class. For instance: class Foo {} // some code here class Foo {} That second Foo would throw the error. 回答2: You have a class of the same name declared more than once. Maybe via multiple includes. When including other files you need to use something like include_once "something.php"; to prevent multiple inclusions. It's very easy for this to happen, though not always