Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:58734 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 76111 invoked from network); 7 Mar 2012 11:03:51 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 7 Mar 2012 11:03:51 -0000 Authentication-Results: pb1.pair.com header.from=arvids.godjuks@gmail.com; sender-id=pass Authentication-Results: pb1.pair.com smtp.mail=arvids.godjuks@gmail.com; spf=pass; sender-id=pass Received-SPF: pass (pb1.pair.com: domain gmail.com designates 74.125.82.54 as permitted sender) X-PHP-List-Original-Sender: arvids.godjuks@gmail.com X-Host-Fingerprint: 74.125.82.54 mail-ww0-f54.google.com Received: from [74.125.82.54] ([74.125.82.54:58155] helo=mail-ww0-f54.google.com) by pb1.pair.com (ecelerity 2.1.1.9-wez r(12769M)) with ESMTP id 43/57-38795-690475F4 for ; Wed, 07 Mar 2012 06:03:51 -0500 Received: by wgbdq13 with SMTP id dq13so5053943wgb.11 for ; Wed, 07 Mar 2012 03:03:48 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :content-type; bh=AX3B+3UI3ta2VYDK0Rauo6buWqijl1ttG/iQQl5RFkI=; b=MWiMqpWv/1NHArbitzEYWbWmdUx61Vub1i+xpEfDlBYbmXILZcYma4kt3TXzw2Vy9z jtl3+82fUED4w1YC6YpvCflxaO+rdhNBRsLBM0Sxiv3OJDqbVkoSVK+Qvzb3pcrrFQJf rW8PFexqRP7ZwVbSxPB47PZetSToOB6I+WztHQhzxEEvP+8cgANxCXF0GBS7o5d2ouz/ O+lEBWPxU5ThYG3tX9RIW+nLnCHLuIySI3QkblHPER3bJ4KtI1o6he+0Wo2AdSk8rZZR PT8knKUIlmTKqPgCn0q2pYHJVMxLO1guYr7tOCKJYW8mOFtGGT038GbjmZVROYvtydSt 4u0w== Received: by 10.216.138.129 with SMTP id a1mr727125wej.49.1331118228173; Wed, 07 Mar 2012 03:03:48 -0800 (PST) MIME-Version: 1.0 Received: by 10.227.117.1 with HTTP; Wed, 7 Mar 2012 03:03:28 -0800 (PST) In-Reply-To: <4F56C418.5060204@akbkhome.com> References: <4F563667.7080006@akbkhome.com> <4F56A796.9000109@akbkhome.com> <4F56C418.5060204@akbkhome.com> Date: Wed, 7 Mar 2012 13:03:28 +0200 Message-ID: To: internals@lists.php.net Content-Type: text/plain; charset=UTF-8 Subject: Re: [PHP-DEV] consider reverting E_ALL with E_STRICT From: arvids.godjuks@gmail.com (Arvids Godjuks) Alan Knowles You should consider the fact that some E_STRICT stuff can one day become E_WARNING or E_FATAL. For example calling a static method dynamically - I would bet that someday this thing will be moved to be a run-time fatal error and fix those if I make a mistake of doing that. Or not setting the timezone in php.ini or in the code. If I'm not mistaken the TZ guessing code was removed and now UTC time is used by default despite the server TZ set. Some unexpected results can and will come out of this. And it's a E_STRICT warning. So really, consider kicking developer buts to fix the issues, or one day you will find that app will not work with the new version of PHP until it's fixed.