Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:41105 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 21961 invoked from network); 16 Oct 2008 00:09:27 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 16 Oct 2008 00:09:27 -0000 Authentication-Results: pb1.pair.com header.from=php-dev.list@daevel.fr; sender-id=pass Authentication-Results: pb1.pair.com smtp.mail=php-dev.list@daevel.fr; spf=pass; sender-id=pass Received-SPF: pass (pb1.pair.com: domain daevel.fr designates 91.121.160.166 as permitted sender) X-PHP-List-Original-Sender: php-dev.list@daevel.fr X-Host-Fingerprint: 91.121.160.166 scrubby.daevel.fr Linux 2.6 Received: from [91.121.160.166] ([91.121.160.166:37513] helo=scrubby.daevel.fr) by pb1.pair.com (ecelerity 2.1.1.9-wez r(12769M)) with ESMTP id 3D/D4-33247-53686F84 for ; Wed, 15 Oct 2008 20:09:27 -0400 Received: from luuna.daevel.fr ([82.67.25.170] helo=[192.168.1.50]) by scrubby.daevel.fr with esmtpsa (TLS-1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.68) (envelope-from ) id 1KqGQc-0007q7-OP for internals@lists.php.net; Thu, 16 Oct 2008 02:09:22 +0200 Message-ID: <48F6862D.1050502@daevel.fr> Date: Thu, 16 Oct 2008 02:09:17 +0200 User-Agent: Mozilla-Thunderbird 2.0.0.16 (X11/20080724) MIME-Version: 1.0 To: internals@lists.php.net References: <48EF89BD.5030904@daevel.fr> <48F05C90.1070609@suse.de> <48F0E7F2.2010607@daevel.fr> <48F5F3AE.4090306@daevel.net> <1224095996.4866.4.camel@felipe> In-Reply-To: <1224095996.4866.4.camel@felipe> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 8bit Subject: Re: [PHP-DEV] segfault => bug report #46308 From: php-dev.list@daevel.fr (Olivier Bonvalet) Hi Filipe, there is not the problem with your code, the script works fine and show "NULL". I open this bug report : http://bugs.php.net/bug.php?id=46308 (I hope the title is correct... I did'nt know what to put...) Thanks, Olivier Felipe Pena a écrit : > Hi Olivier, > > > > That is weird, cannot you reproduce it using the code below? > > class main > { > public static $dataAccessor; > } > > class relay > { > public function __get($name) > { > main::$dataAccessor = 1; > } > } > > main::$dataAccessor = new relay(); > var_dump(main::$dataAccessor->bar); > > ?> > > Anyway, please file a bug report: http://bugs.php.net/report.php > > Thanks. > >