ID:               33772
 Comment by:       earnest dot berry at gmail dot com
 Reported By:      msipria at suomi24 dot fi
 Status:           Open
 Bug Type:         Documentation problem
 Operating System: *
 PHP Version:      5CVS-2005-07-19
 New Comment:

I also am having the issue. I'm using 5.1.0b3 with mysql 4.1.13a-nt.
Will this be fixed in the next relase of PHP?


Previous Comments:
------------------------------------------------------------------------

[2005-09-09 21:56:34] tss24 at cornell dot edu

Experiencing the same exact problem with PHP 5.0.5 and MySQL 4.1.11

Was this a new bug with PHP 5.0.5 / 5.1.x?

------------------------------------------------------------------------

[2005-08-24 23:58:03] webmaster at vintagegaming dot org

I want to enter this as a new bug report but I expect it would be
kicked out as a duplicate of 33635, which links to this bug.  This
seems related in that something has changed so that my mysqli link is
closed before the shutdown_function is executed.

The following code works in all php5 versions before 5.1beta3.

<?php

function shutdown()
{
        global $link;

        echo mysqli_real_escape_string($link, 'foo');
}

$servername = 'localhost';
$username = 'username';
$password = 'password';

$link = mysqli_init();
mysqli_real_connect($link, $servername, $username, $password);

echo mysqli_real_escape_string($link, 'foo') . '<br />';

register_shutdown_function('shutdown');

?>

Expected Result:
foo
foo

Actual Result:
foo
Warning: Couldn't fetch mysqli in c:\program files\apache
group\Apache\htdocs\foo.php on line 7

and to further this annoying issue, why is it that the equivalent mysql
function still works in 5.1b3?

<?php

function shutdown()
{
        global $link;
        
        echo mysql_real_escape_string('foo', $link);
}

$servername = 'localhost';
$username = 'username';
$password = 'password';

$link = mysql_connect($servername, $username, $password);

echo mysql_real_escape_string('foo', $link) . '<br />';

register_shutdown_function('shutdown');

?>

Expected Result:
foo
foo

Actual Result:
foo
foo

------------------------------------------------------------------------

[2005-08-23 03:03:36] [EMAIL PROTECTED]

Reclassified as documentation issue.


------------------------------------------------------------------------

[2005-08-09 14:55:03] [EMAIL PROTECTED]

This patch fixes this problem by doing php_session_flush() before any
__destruct()'s are called:

  http://www.php.net/~jani/patches/bug33772.patch

Note: It won't work if you have compiled ext/session as shared. We need
a better solution, I'm submitting this just  as as temporary one.


------------------------------------------------------------------------

[2005-08-09 14:01:49] [EMAIL PROTECTED]

This is chicken/egg problem and it cannot be solved. One expect that
destructors are called before session close the other uses object for
save handlers.

------------------------------------------------------------------------

The remainder of the comments for this report are too long. To view
the rest of the comments, please view the bug report online at
    http://bugs.php.net/33772

-- 
Edit this bug report at http://bugs.php.net/?id=33772&edit=1

Reply via email to