ID: 14549
Updated by: mfischer
Reported By: [EMAIL PROTECTED]
Old Status: Open
Status: Closed
Bug Type: MySQL related
Operating System: Windows 2000
PHP Version: 4.1.0
New Comment:
It is verified and Zeev fixed it in CVS already. It only happens with win32 non-debug
builds.
Previous Comments:
------------------------------------------------------------------------
[2001-12-17 11:23:00] [EMAIL PROTECTED]
Zend Engine v1.1.0a
------------------------------------------------------------------------
[2001-12-17 11:16:37] [EMAIL PROTECTED]
Can't reproduce... pconnect() works fine for me.
What is the version of the Zend Engine? (see phpinfo())
(reclassified)
------------------------------------------------------------------------
[2001-12-16 13:26:41] [EMAIL PROTECTED]
heh :) sorry
finger-to-keyboard error ... :)
This Warning message is visible since PHP4.1.0
not 4.0.1 ...
------------------------------------------------------------------------
[2001-12-16 13:18:41] [EMAIL PROTECTED]
What I do wrong if this easy error-less script
<?
$db = MYSQL_PCONNECT("localhost","root","") OR DIE("");
mysql_select_db("chat",$db) or DIE("");
$ares=mysql_query("select * from c_users");
echo "CHAT room - online users: ";
if (mysql_num_rows($ares)==0) echo "nobody";
while ($arow=mysql_fetch_array($ares))
{
echo $arow[username];
}
?>
produce this output with Warning message ...
CHAT room - online users: nobody
Warning: Unknown persistent list entry type in module shutdown (11) in Unknown on line
0
This warning I see if I enable the option
error_reporting = E_ALL & ~E_NOTICE
in php.ini. This message is visible since PHP4.0.1
When I downgrade to PHP4.0.6, the message isn't there.
------------------------------------------------------------------------
Edit this bug report at http://bugs.php.net/?id=14549&edit=1
--
PHP Development Mailing List <http://www.php.net/>
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]