Forum Moderators: coopster
Strict Standards: Non-static method rlDebug::errorHandler() should not be called statically
public function errorHandler() {
/* Rest of code here */
}
public static function errorHandler() {
/* Rest of code here */
}
Fatal error: Call-time pass-by-reference has been removed...
function myFunction($myParam) {
/* Rest of code here */
}
myFunction(&$myArg); // Call time pass-by-reference
// Declare that $myParam is a reference (& prefix)
function myFunction(&$myParam) {
/* Rest of code here */
}
myFunction($myArg); // No reference here, but a reference is passed.
I'm also getting this error:
Strict Standards: Non-static method rlDebug::errorHandler() should not be called statically
:
I dont see any &? symbols