Is it possible to change the level of error messages (disable E_STRICT) for files that are included in my PHP application using includeor require_once?
I would like to see the strict notifications that occur in my code, but I use PEAR MDB2, and I get warning pages from this code when I turn on E_STRICT.
I know that it is possible to change error_reportingbased on each directory with the .htaccess file, but I do not think that this works with the included files. I tried to put it in the pear folder, but did nothing.
source
share