faqts : Computers : Programming : Languages : PHP : Common Problems : Errors

+ Search
Add Entry AlertManage Folder Edit Entry Add page to http://del.icio.us/
Did You Find This Entry Useful?

1 of 1 people (100%) answered Yes

Entry

Why do I get this in my error log: zend_execute.c(392) : Freeing 0x081E1980 (12 bytes), script=/path/to/script???

Feb 16th, 2000 07:54
Fred K,


Hmm, it seems that it was an @ that caused the problem.  Here is the 
scenario:  I have created a database connection object which wraps up 
communicating to a database.  I used the following statement to connect:

  @$this->Connection = mysql_connect($Host,$User,$Password);

However, this caused the leak.  Removing the @ seems to eliminate the 
leak...