Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:4252 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 35894 invoked by uid 1010); 29 Aug 2003 18:43:19 -0000 Delivered-To: ezmlm-scan-internals@lists.php.net Delivered-To: ezmlm-internals@lists.php.net Received: (qmail 35845 invoked from network); 29 Aug 2003 18:43:17 -0000 Received: from unknown (HELO mail.zend.com) (192.117.235.230) by pb1.pair.com with SMTP; 29 Aug 2003 18:43:17 -0000 Received: (qmail 16395 invoked from network); 29 Aug 2003 18:43:06 -0000 Received: from localhost (HELO zeev-laptop.zend.com) (127.0.0.1) by localhost with SMTP; 29 Aug 2003 18:43:06 -0000 Reply-To: zeev@zend.com Message-ID: <5.1.0.14.2.20030829211945.0957bf48@localhost> X-Sender: zeev@localhost X-Mailer: QUALCOMM Windows Eudora Version 5.1 Date: Fri, 29 Aug 2003 21:48:32 +0300 To: "Andrey Hristov" Cc: "Robert Cummings" , In-Reply-To: <000c01c36e4d$7b7c0b90$1601a8c0@andreywin> References: <001501c36e2f$db614890$1601a8c0@andreywin> <1062174412.417.42.camel@blobule.suds> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii"; format=flowed Subject: Re: [PHP-DEV] Shared module problems (core dumps) (under apache 1.3) From: zeev@zend.com (Zeev Suraski) At 19:49 29/08/2003, Andrey Hristov wrote: > Yes, it serves me well now. However this is a way to workaround the >problem. >An the problem exists and I want to hear from core experts (the best will be >if >Zeev or Andi) tell their opinion. I am concerned about this problem. Internal classes were not all that popular at the time the module interface was designed. I guess that because roughly at the same time classes started becoming more popular, we deprecated dl() - we never got to adding hooks to unregister classes. You should be able to use zend_hash_del() for now at MSHUTDOWN, but I'll also add an alias zend_unregister_internal_class(). Zeev