error-reporting
Difference between error_reporting() and ini_set('error_reporting')?
When using error_reporting() or ini_set(\'error_reporting\') in my scripts, are there any functionality differences开发者_如何学Python between the two? Is one method preferred over the other?[详细]
2022-12-15 05:04 分类:问答How to view error messages from ruby CGI app on remote server?
I have written a Ruby (not Rails) app which generates web pages. The script is installed on a linux web server and is called up by apache using CGI in response to HTTP requests. Pretty standard stuff.[详细]
2022-12-14 19:28 分类:问答How to avoid isset() and empty()
I have several older applications that throw a lot of \"xyz is undefined\" and \"undefined offset\" messages when running on the E_NOTICE error level, because the existence of variables is not explici[详细]
2022-12-14 16:43 分类:问答Does PHP error_reporting(0) affect error logging, or just display?
Does error_reporting(0); have any effect on err开发者_开发知识库or logging (to file), or does it just suppress on-screen error display?[详细]
2022-12-14 07:04 分类:问答Error-reporting framework for .net
is there an error-reporting-framework you would suggest for use in .net. I need possibilities like e-mail-reporting with fileappending to e-mail. The user should have the possibility to add informatio[详细]
2022-12-13 21:23 分类:问答errors are not displaying in PHP script
I have tried with these code: error_reporting(E_ALL^E_NOTICE); ini_set(\"display_startup_errors\",\"on\");[详细]
2022-12-12 23:58 分类:问答Why is exception handling bad? [closed]
Closed. This question is opinion-based. It is not currently accepting answers. Want to improve this question? Update the question so it can be answered with facts and citations by editing[详细]
2022-12-11 05:52 分类:问答What's the point of E_ALL | E_STRICT if it's the same value as E_ALL?
E_ALL equals 8191 (0001 1111 1111 1111) E_STRICT equals 2048 (0000 1000 0000 0000) Using bitwise OR to combine them:[详细]
2022-12-10 10:36 分类:问答What are differences between error_reporting(E_ALL) and error_reporting(E_ALL & ~E_NOTICE)
Could anyone explain differences between error_reporting(E_ALL); and error_reporting(E_ALL & ~E_NOTICE); ?[详细]
2022-12-10 02:47 分类:问答Php not reporting any errors on IIS7
I am developing a PHP application using our XAMPP setup as a test server. Once the app is ready to deploy, I have to upload it to the client\'s server,[详细]
2022-12-09 07:37 分类:问答