Hi Stackers
I am trying to use this in my page class. I only just started using objects in PHP so I'm still a little clueless (but learning as much as I can). This is in my page() function (so called when there is a new instance of page)
set_error_handler('$this->appendError');
This is causing an error
Warning: set_error_handler() expects the argument (appendError) to be a valid callback
Now how do I set a class internal function whilst passing the function as a string. Is this not possible? Should I use a normal function which then calls the class function and sends through all arguments? This sounds a little cumbersome to me.
Or have I missed the problem? I've tried making my appendError return a string, and echo.. but it still isn't playing nice.
Any help would be greatly appreciated.
Thank you!!