Hello,

the following script:

<?php
    class foo {

        function foo() {
            $this->a = $this;
            $this->b = $this;
        }

    }

    function bar($o) {
    }

    $f = new foo();
    bar($f);
    bar($f);
?>


generates the following warning:
/dat/dev/php/php-5.0dev/Zend/zend_hash.c(504) : ht=0x4055e9b0 is being destroyed

regards,
Derick

-- 
PHP Internals - PHP Runtime Development Mailing List
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to