PHP Apache 在执行存储过程时崩溃

2022-08-30 19:18:40

问题

当我执行以下代码时(我正在调用具有 5 个 IN 参数和 1 个 OUT 参数的存储过程)

$conn->query("SET @res = ''");

$mysqli=$conn;
if (!($stmt = $mysqli->prepare("CALL retrieve_matches(5,3, 16, 2, false, @res)"))) {
    echo "Prepare failed: (" . $mysqli->errno . ") " . $mysqli->error;
}

if (!$stmt->execute()) {
    echo "Execute failed: (" . $stmt->errno . ") " . $stmt->error;
}

do {
    if ($res = $stmt->get_result()) { //Apache crash on this call
        printf("---\n");
        var_dump(mysqli_fetch_all($res));
        mysqli_free_result($res);
    } else {
        if ($stmt->errno) {
            echo "Store failed: (" . $stmt->errno . ") " . $stmt->error;
        }
    }
} while ($stmt->more_results() && $stmt->next_result());

apache崩溃并出现错误:

AH00428:父进程:子进程 9628 退出,状态为 255 -- 正在重新启动。

我尝试了什么

  1. 此代码工作正常,并且正确返回结果:
$conn->query("SET @res = ''");
$res=$conn->query("CALL retrieve_matches(5,3, 16, 2, false, @res)");
var_dump($res->fetch_assoc());

注意:如果我只是更改存储过程输入中的数字,则上面使Apache崩溃的相同代码可以正常工作,例如:

if (!($stmt = $mysqli->prepare("CALL retrieve_matches(5,6, 16, 2, false, @res)"))) {
  1. 从MySQl工作台尝试,两个调用都工作正常。
  2. 我在WIN7 Enterprise 64b上使用WAMP 64b,我尝试使用WAMP 32b,但遇到了同样的问题。
  3. 我检查了Windows事件,发现httpd.exe是由php5ts引起的崩溃.dll
  4. 如果你在谷歌上搜索“httpd.exe php5ts.dll”,你会发现很多人都在回答这个问题。但是我没有找到WAMP的解决方案...
  5. 尝试使用AMPPS,完全相同的问题

错误日志

[10-Jul-2015 15:30:03 UTC] PHP Warning:  PHP Startup: Unable to load dynamic library 'C:/Program Files/wamp/bin/php/php5.5.12/ext/php_ldap.dll' - Impossibile trovare il modulo specificato.

 in Unknown on line 0

[10-Jul-2015 15:30:04 UTC] PHP Warning:  PHP Startup: Unable to load dynamic library 'C:/Program Files/wamp/bin/php/php5.5.12/ext/php_intl.dll' - Impossibile trovare il modulo specificato.

APACHE 错误日志:

[Tue Jul 14 15:02:13.038276 2015] [mpm_winnt:notice] [pid 7044:tid 404] AH00428: Parent: child process 9448 exited with status 255 -- Restarting.
[Tue Jul 14 15:02:13.324305 2015] [mpm_winnt:notice] [pid 7044:tid 404] AH00455: Apache/2.4.9 (Win32) PHP/5.5.12 configured -- resuming normal operations
[Tue Jul 14 15:02:13.329306 2015] [mpm_winnt:notice] [pid 7044:tid 404] AH00456: Apache Lounge VC11 Server built: Mar 16 2014 12:13:13
[Tue Jul 14 15:02:13.329306 2015] [core:notice] [pid 7044:tid 404] AH00094: Command line: 'C:\\Program Files\\wamp\\bin\\apache\\apache2.4.9\\bin\\httpd.exe -d C:/Program Files/wamp/bin/apache/apache2.4.9'
[Tue Jul 14 15:02:13.352308 2015] [mpm_winnt:notice] [pid 7044:tid 404] AH00418: Parent: Created child process 3140
[Tue Jul 14 15:02:14.528388 2015] [mpm_winnt:notice] [pid 3140:tid 332] AH00354: Child: Starting 64 worker threads.

我真的迷失了,我应该去哪里寻找问题?非常感谢您的帮助

编辑

我意识到存储过程“retrieve_matches”正在更改值的功能中调用不同的存储过程。我调试了存储过程“retrieve_standalone”,这是使Apache崩溃的过程。此过程正在执行选择/插入,我检查并正确制作了插入。但是在“retrieve_standalone”中,我以一种奇怪的方式使用光标:

declare bNoMoreRows bool default false;
declare tmp_cursor cursor for
    select comp_id from to_match; -- to_match is a temporary table
declare continue handler for not found set bNoMoreRows := true;

如果我没有打开光标

open tmp_cursor;

一切都很好!所以我想我现在发现了这个问题:我该如何解决它?


答案 1

如果 php5ts.dll或 apache 的任何其他部分每次运行短脚本时都以可重现的方式崩溃,那么您很可能在 php 中遇到了错误。特别是如果你运行一个最新的apache,从 php.net 下载了最新的php版本,那么你有很大的机会从PHP团队获得支持。因此,通读 https://bugs.php.net/how-to-report.php,看看是否可以在没有apache的情况下运行脚本时重现崩溃(在使用php.exe的cli上的单独脚本中),并生成一个回溯,然后您可以将其作为错误提交。

像这样的错误有时可以解决,但很少从脚本的上下文中修复。PHP不应该使Web服务器崩溃,如果它这样做是可重复的,应该提交一个错误,以便可以修复它


答案 2

我发现如何重现它,我相信这是一个php / apache错误

PHP 代码:

if (!($stmt = $mysqli->prepare("CALL test()"))) {
    echo "Prepare failed: (" . $mysqli->errno . ") " . $mysqli->error;
}

if (!$stmt->execute()) {
    echo "Execute failed: (" . $stmt->errno . ") " . $stmt->error;
}

do {
    if ($res = $stmt->get_result()) {
        printf("---\n");
        //var_dump(mysqli_fetch_all($res));
        var_dump($res->fetch_assoc());
        mysqli_free_result($res);
    } else {
        if ($stmt->errno) {
            echo "Store failed: (" . $stmt->errno . ") " . $stmt->error;
        }
    }
} while ($stmt->more_results() && $stmt->next_result());

商店流程代码:

CREATE DEFINER=`root`@`localhost` PROCEDURE `test`()
BEGIN
declare test_var varchar(100) default "ciao";
declare bNoMoreRows bool default false;
declare test_cursor cursor for
    select id from tmp_folder;
declare continue handler for not found set bNoMoreRows := true;

create temporary table tmp_folder select "test" as id;

open test_cursor;

fetch test_cursor into test_var;

close test_cursor;

select test_var;

drop temporary table if exists tmp_folder;

END

打开的错误:阿帕奇:https://bz.apache.org/bugzilla/show_bug.cgi?id=58136

菲律宾比索: https://bugs.php.net/bug.php?id=70073


推荐