Questions tagged «error-suppression»


16
用PHP中的@运算符抑制错误
您认为在PHP中使用@运算符来抑制错误/警告是否有效,而您可能正在处理该错误? 如果是这样,您将在什么情况下使用它? 欢迎使用代码示例。 编辑:答复者注意。我不想关闭错误报告功能,但是,例如,通常的做法是使用 @fopen($file); 然后再检查...但是您可以通过执行以下操作来消除@ if (file_exists($file)) { fopen($file); } else { die('File not found'); } 或类似。 我想问题是-是否有@HAS可以用来阻止错误,并且不能以其他任何方式处理?
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.