Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:62788 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 51703 invoked from network); 4 Sep 2012 12:51:11 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 4 Sep 2012 12:51:11 -0000 Authentication-Results: pb1.pair.com smtp.mail=lester@lsces.co.uk; spf=permerror; sender-id=unknown Authentication-Results: pb1.pair.com header.from=lester@lsces.co.uk; sender-id=unknown Received-SPF: error (pb1.pair.com: domain lsces.co.uk from 213.123.26.185 cause and error) X-PHP-List-Original-Sender: lester@lsces.co.uk X-Host-Fingerprint: 213.123.26.185 c2beaomr07.btconnect.com Received: from [213.123.26.185] ([213.123.26.185:45371] helo=mail.btconnect.com) by pb1.pair.com (ecelerity 2.1.1.9-wez r(12769M)) with ESMTP id 58/A0-46870-D39F5405 for ; Tue, 04 Sep 2012 08:51:09 -0400 Received: from host81-138-11-136.in-addr.btopenworld.com (EHLO _10.0.0.5_) ([81.138.11.136]) by c2beaomr07.btconnect.com with ESMTP id IWS13947; Tue, 04 Sep 2012 13:51:06 +0100 (BST) Message-ID: <5045F939.6010806@lsces.co.uk> Date: Tue, 04 Sep 2012 13:51:05 +0100 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:13.0) Gecko/20120604 Firefox/13.0 SeaMonkey/2.10 MIME-Version: 1.0 To: PHP internals References: <5040DC47.8000305@ajf.me> <5040F4D9.80206@sugarcrm.com> <5042946A.80204@sugarcrm.com> <5042A7D6.7050001@lerdorf.com> <50452713.3020307@sugarcrm.com> <5045CAA3.6000409@lsces.co.uk> <5045E044.9080809@lsces.co.uk> In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Mirapoint-IP-Reputation: reputation=Fair-1, source=Queried, refid=tid=0001.0A0B0301.5045F93A.0017, actions=tag X-Junkmail-Premium-Raw: score=7/50, refid=2.7.2:2012.9.4.123625:17:7.944, ip=81.138.11.136, rules=__MOZILLA_MSGID, __HAS_MSGID, __SANE_MSGID, __HAS_FROM, __USER_AGENT, __MIME_VERSION, __TO_MALFORMED_2, __BOUNCE_CHALLENGE_SUBJ, __BOUNCE_NDR_SUBJ_EXEMPT, __CT, __CT_TEXT_PLAIN, __CTE, __ANY_URI, __URI_NO_WWW, __CP_URI_IN_BODY, __C230066_P2, BODY_ENDS_IN_URL, BODY_SIZE_3000_3999, __MIME_TEXT_ONLY, RDNS_GENERIC_POOLED, HTML_00_01, HTML_00_10, BODY_SIZE_5000_LESS, RDNS_SUSP_GENERIC, RDNS_SUSP, BODY_SIZE_7000_LESS X-Junkmail-Status: score=10/50, host=c2beaomr07.btconnect.com X-Junkmail-Signature-Raw: score=unknown, refid=str=0001.0A0B0207.5045F93A.0090:SCFSTAT14830815,ss=1,re=-4.000,fgs=0, ip=0.0.0.0, so=2011-07-25 19:15:43, dmn=2011-05-27 18:58:46, mode=multiengine X-Junkmail-IWF: false Subject: Re: [PHP-DEV] E_STRICT 'errors' - was Are exceptions allowed in php core? From: lester@lsces.co.uk (Lester Caine) Sherif Ramadan wrote: > On Tue, Sep 4, 2012 at 7:04 AM, Lester Caine wrote: >> Pierre Joye wrote: >>>> >>>> How many of the major PHP user projects ARE currently strict compliant? >>>> And >>>>> how many are still requiring E_STRICT switched off in PHP5.4? >>> >>> This is a development and very useful. PHP does not enforce this mode. >>> And like any other errors, it only ends in your logs. >>> >>> But this has been told to you a good dozen of times in the past, and >>> it is really getting ridiculous to have to explain that over and over. >> >> >> And the point of YOUR comments? >> With E_STRICT enabled - as is the default on PHP5.4 - programs simply crash >> if they have not been 'converted'! >> > > E_STRICT can't crash you program. It's just like an E_WARNING or > E_NTOICE level error. It's non-fatal. It does not inhibit the > execution of code. ??? OH YES IT DOES !!! MANY times I get a a few lines of text on a white screen ... Switch off E_STRICT and everything works fine ... as it was on PHP5.2 >> The QUESTION is a perfectly valid one ... especially when I've just hit yet >> another current project that we have to make sure to disable E_STRICT when >> they get transferred to a PHP5.4 machine! I have no doubt a lot more will >> also be affected and so knowing the right answers is important. As perhaps >> is understanding the reason some projects are not converting code? >> > > What exactly is the question that you're posing to PHP Internals? An > audit of how much code doesn't follow strict standards? Probably a > lot. I've seen plenty of it in production myself and among them even > the most popular PHP frameworks. Having tested Joomla on PHP 5.4 > before a switch to production I recall seeing an actual drop in > performance due to the sheer number of E_DEPRECATED and/or E_STRICT > errors that the code produced. That is one which was white screening for me, and all I was trying to do was a favour for some one. A quick hack of the config file and we were working again, but certainly some modules in Joomla are not save when used with E_STRICT set! > However, none of that prevented the code from running (or "crashing" > as you say). All you have to do is change the error_reporting > directive if you chose to ignore those errors for the time being. You > simply don't have display_errors on in production anyway so the worst > possible outcome here is that you end up with an error log stuffed > with those errors. Nothing critical here. > > This is not even a minor concern for most code basis that exhibit this > problem to a great degree because the majority of them aren't willing > to upgrade to 5.4 or have realized the problem by now and are fixing > their code. The 'concern' is that ISP's are following the recommendations, and using the default production setup, so E_STRICT is on - PLEASE LEAVE IT OFF should be the standard! >> While the preference on PHP5.4 may be to force people to comply, the reality >> is that this is a switch which it's more likely needs switching off in >> production simply because user land has no idea how to handle the problems >> yet. And I'll keep banging on until what is distributed from the php.net >> site actually works on a current default install ... >> > > The userland problem is a trivial issue. All they have to do is turn > display_errors off in production as is recommended and is the default > anyway. There is nothing major here to hold you back other than > yourself. -- Lester Caine - G8HFL ----------------------------- Contact - http://lsces.co.uk/wiki/?page=contact L.S.Caine Electronic Services - http://lsces.co.uk EnquirySolve - http://enquirysolve.com/ Model Engineers Digital Workshop - http://medw.co.uk Rainbow Digital Media - http://rainbowdigitalmedia.co.uk