Spaweditor Total error running on the latest wampserver, is it only possible to downgrade by PHP?
The parameters in PHP.ini have been revised: error_reporting = E_all & ~e_notice & ~e_strict & ~e_deprecated
FTP to the other third party to provide the web host run all right, but the local wampserver still is the result, ask for guidance! Thanks
Is it only possible to wampserver degraded 2.1 (php5.3) to resolve
PHP Wampserver
------Solution--------------------
You can modify the program by pressing the error message
Like he said Spawconfig::setstaticconfigitem wasn't a static method.
Then you find the function Setstaticconfigitem in the Spawconfig class definition with the static declaration in front
------Solution--------------------
Class T {
function foo () {
Echo ' ABCD ';
}
}
Class T1 {
static function foo () {
Echo ' ABCD ';
}
}
T1::foo (); This won't be an error.