
Dave Smith - 2015-06-01 17:22:47 -
In reply to message 1 from phpClass
These are low level notices used for debugging in the development environment. Ideally the developer would have taken care of all these during development, however some don't since they do not effect the operation.
So you need to set your error reporting for production. To do this, add the following line at the beginning of the file which is being ran (after the <?php line)...
error_reporting(E_ALL ^ E_NOTICE);
This is saying report all errors except low level notices. If you are still getting errors, then the script is buggy and those errors should be addressed. However, if the script is actually still performing you can turn the error reporting off using...
error_reporting(0);
Dave