English 中文(简体)
PHP误差显示第1768776801行的警告
原标题:PHP error log shows warnings on line 1768776801

我在我的错误记录中发现这一点(说明:一是没有删除档案名称)。

Of course I don t have any script with 1 bn lines.

PHP Version 5.3.3-7
Apache 2

另一件事是,我有一件事。

set_error_handler(  myHandler  );

在错误记录中写其他暗示,但是由于这一错误,PHP似乎只是忽视我的错误——手脚。 在我打电话到set_error_handler<<<<>code>之前,我没有能够产生这种错误的任何代码。

Edit

  • Debian at 64Bit
  • I didn t edit, in the error log there aren t any filename, in fact I don t know which script causes this.
  • I have APC installed
最佳回答

这比实际答案更重要:

你们需要找到哪部actual代码正在引发错误。 只要你不敢说正在发生什么。

为开始清点,确保您在上编造。 因此,它独立管理。

然后,请install xdebug, 并加上。 重要部分是:它独立于set_error_handler<>/code>。

This logging information should already give you more insight. If not, start with remote debugging and step through the code until the warning occurs.

Related Question:

问题回答

暂无回答




相关问题
Brute-force/DoS prevention in PHP [closed]

I am trying to write a script to prevent brute-force login attempts in a website I m building. The logic goes something like this: User sends login information. Check if username and password is ...

please can anyone check this while loop and if condition

<?php $con=mysql_connect("localhost","mts","mts"); if(!con) { die( unable to connect . mysql_error()); } mysql_select_db("mts",$con); /* date_default_timezone_set ("Asia/Calcutta"); $date = ...

定值美元

如何确认来自正确来源的数字。

Generating a drop down list of timezones with PHP

Most sites need some way to show the dates on the site in the users preferred timezone. Below are two lists that I found and then one method using the built in PHP DateTime class in PHP 5. I need ...

Text as watermarking in PHP

I want to create text as a watermark for an image. the water mark should have the following properties front: Impact color: white opacity: 31% Font style: regular, bold Bevel and Emboss size: 30 ...

How does php cast boolean variables?

How does php cast boolean variables? I was trying to save a boolean value to an array: $result["Users"]["is_login"] = true; but when I use debug the is_login value is blank. and when I do ...