April 29, 200917 yr I am currently learning php and debugging a script I have written....nightmare (might post it soon!) But just discovered this ....http://www.chipwreck.de/blog/software/coda-php/ ... is this another very good reason for me to get CODA!?? Can anyone shed some light? Have you used this? Any more info would be good or if you have any good debugging resources (mac no windows) please tell me Thanks guys
April 29, 200917 yr If you're testing locally, you could always place the following in you php.ini error_reporting = E_ALL | E_STRICT
April 30, 200917 yr If you're testing locally, you could always place the following in you php.ini error_reporting = E_ALL | E_STRICT Sounds interesting.... What does it do exactly?
April 30, 200917 yr From the php.net site In PHP 5 a new error level E_STRICT is available. As E_STRICT is not included within E_ALL you have to explicitly enable this kind of error level. Enabling E_STRICT during development has some benefits. STRICT messages will help you to use the latest and greatest suggested method of coding, for example warn you about using deprecated functions. All it means is you'll get great big ugly help boxes all over your page when you view it in a browser. Very helpful though
Create an account or sign in to comment