Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:6539 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 16440 invoked by uid 1010); 18 Dec 2003 14:11:12 -0000 Delivered-To: ezmlm-scan-internals@lists.php.net Delivered-To: ezmlm-internals@lists.php.net Received: (qmail 16408 invoked from network); 18 Dec 2003 14:11:11 -0000 Received: from unknown (HELO jdi.jdimedia.nl) (212.204.192.51) by pb1.pair.com with SMTP; 18 Dec 2003 14:11:11 -0000 Received: from localhost (localhost [127.0.0.1]) by jdi.jdimedia.nl (8.12.10/8.12.10) with ESMTP id hBIEAr6g026413; Thu, 18 Dec 2003 15:10:53 +0100 Date: Thu, 18 Dec 2003 15:10:53 +0100 (CET) X-X-Sender: derick@localhost To: Daniel Convissor cc: PHP Internals List In-Reply-To: <20031218140527.GA26390@panix.com> Message-ID: References: <20031218124303.18e22274.paj@pearfr.org> <20031218140527.GA26390@panix.com> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Subject: Re: [PHP-DEV] B3, pear segfault, and msgs about deprecated From: derick@php.net (Derick Rethans) On Thu, 18 Dec 2003, Daniel Convissor wrote: > Hi Pierre: > > On Thu, Dec 18, 2003 at 12:43:03PM +0100, Pierre-Alain Joye wrote: > > > > I got new messages (which where not displayed before): > > : var: Deprecated. Please use the public/private/protected modifiers in > > XXX.php on line XX > > I noticed the same thing. The new E_STRICT reporting level produces such > output. But, E_STRICT is turned off by default. Didn't have time to > track down exactly what was going on, but I have a hunch that it is due to > some of the PEAR install scripts set error_reporting by using numbers > rather than constants. That shouldn't matter. As 2047 was the highest number before, this would still exclude E_STRICT which is 2048. E_ALL also doesn't include it. Derick