在 Zen cart 中使用 error_reporting()

发布于 2024-10-19 13:57:35 字数 115 浏览 0 评论 0原文

我在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

楠木可依 2024-10-26 13:57:35

Zen cart 有一种内置方法可以轻松进行错误报告。

在购物车顶部创建一个名为includes/local 的目录。在此目录中,放置一个名为configure.php的文件。在此文件中,

<?php
   define('STRICT_ERROR_REPORTING', true);
   ?>

您将看到代码生成的 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

<?php
   define('STRICT_ERROR_REPORTING', true);
   ?>

you will then see the php errors your code generates.

通知家属抬走 2024-10-26 13:57:35

您可以编写 error_reporting(E_ALL) 来显示所有错误+通知+警告...

you can just write error_reporting(E_ALL) for displaying all errors + notices + warnings...

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文