PHP STRICT Standards Issues
Exception information:
( ! ) Strict standards:declaration of Sugaremailaddress::save () should be compatible with the that's Sugarbean::save () in D:\dev\s erver\xampp1\htdocs\sugar\include\sugaremailaddress\sugaremailaddress.php on line 1011
Call Stack
#TimeMemoryFunctionLocation
1 |
0.0017 |
523432 |
{main} ( ) |
.. \install.php:0 |
2 |
0.2274 |
7165168 |
Require_once ( ' D:\dev\server\xampp1\htdocs\sugar\include\entryPoint.php ' ) |
.. \install.php:60 |
?
When running the PHP software, if you encounter a similar error, "STRICT standards", not an error, but PHP5.3 and the previous version is not very compatible. The release after 5.3 stipulates that the declaration needs to be before use.
Modify php.ini can be resolved, in fact, does not show this exception:
?
Hara PHP.ini
error_reporting = E_all | E_strict
?
Revision changed to
error_reporting = e_all & ~e_notice?