在 Zen cart 中使用 error_reporting()
我在 Zen Cart 中工作,在不同页面中出现一些错误。我想使用error_reporting(0)
。
我可以如何以及在哪个页面中使用它?
有人可以帮我吗?
I am working in Zen Cart and I have some errors in different pages. I want to use error_reporting(0)
.
How and in which page can I use this?
Could anybody please help me?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Zen cart 有一种内置方法可以轻松进行错误报告。
在购物车顶部创建一个名为includes/local 的目录。在此目录中,放置一个名为configure.php的文件。在此文件中,
您将看到代码生成的 php 错误。
Zen cart has a built in way to make it easy to do error reporting.
Create a directory at the top of your cart called includes/local. In this directory, put a file called configure.php. In this file, put
you will then see the php errors your code generates.
您可以
编写 error_reporting(E_ALL)
来显示所有错误+通知+警告...you can just
write error_reporting(E_ALL)
for displaying all errors + notices + warnings...