Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:63913 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 97717 invoked from network); 16 Nov 2012 08:55:38 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 16 Nov 2012 08:55:38 -0000 Authentication-Results: pb1.pair.com smtp.mail=rasmus@lerdorf.com; spf=permerror; sender-id=unknown Authentication-Results: pb1.pair.com header.from=rasmus@lerdorf.com; sender-id=unknown Received-SPF: error (pb1.pair.com: domain lerdorf.com from 209.85.216.42 cause and error) X-PHP-List-Original-Sender: rasmus@lerdorf.com X-Host-Fingerprint: 209.85.216.42 mail-qa0-f42.google.com Received: from [209.85.216.42] ([209.85.216.42:53546] helo=mail-qa0-f42.google.com) by pb1.pair.com (ecelerity 2.1.1.9-wez r(12769M)) with ESMTP id C0/F4-63561-98FF5A05 for ; Fri, 16 Nov 2012 03:55:38 -0500 Received: by mail-qa0-f42.google.com with SMTP id b33so4659072qad.8 for ; Fri, 16 Nov 2012 00:55:35 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=message-id:date:from:user-agent:mime-version:to:cc:subject :references:in-reply-to:x-enigmail-version:content-type :content-transfer-encoding:x-gm-message-state; bh=VlnPf8noQ4+kFKQ7CUEP49TgCxA0MG23emKpU35xrOA=; b=pyjkBeyUwaVLOMKn8nMswixQ8wqNEZMTD1q7lZb416r7XF0KqNKerWvaM9VmOoJLja xHnYUONytfHvtnehNUcMmGBzScyzMIRgkT6jQyyF+ylKAq3GL6Q2+PUaX0plJm0vqwlS mSNeDnNC916nrZXuZFBggrlDqXcBtk9Qx2AyFLk2USfPx+LMtOh8Id8W2py0h93ddRLa RjIm7+m6/0LC/k9HaiZJUslGdZMmHKtf+IQzC7iDpaTUvgupUPTr44iDAJ4BDWAJPhv1 LAPTUg2aLQUimQNIqxWDMvzQeB5z3nk1m5FeOyTwaKF8eRjc3Fs77BJBnvYh5uOLi752 Yi1A== Received: by 10.224.39.83 with SMTP id f19mr3565370qae.76.1353056135055; Fri, 16 Nov 2012 00:55:35 -0800 (PST) Received: from [192.168.200.148] (c-50-131-44-225.hsd1.ca.comcast.net. [50.131.44.225]) by mx.google.com with ESMTPS id y17sm819668qaa.6.2012.11.16.00.55.32 (version=SSLv3 cipher=OTHER); Fri, 16 Nov 2012 00:55:33 -0800 (PST) Message-ID: <50A5FF83.1060706@lerdorf.com> Date: Fri, 16 Nov 2012 00:55:31 -0800 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:16.0) Gecko/20121028 Thunderbird/16.0.2 MIME-Version: 1.0 To: Patrick ALLAERT CC: Pierre Joye , Anthony Ferrara , Will Fitch , Stas Malyshev , Adam Harvey , Devis Lucato , PHP Developers Mailing List References: <50A1946F.8010407@lerdorf.com> <50A20CCB.8090909@lsces.co.uk> <8A8A29F9E43E417FB5450D63019B2DDB@NeiRoze> <8f4231fc-6e3c-4a33-af71-2af5e7a95dfd@email.android.com> <50A2D672.7010600@gmail.com> <50A30144.5070305@phpgangsta.de> <50A3BEC0.8030607@gmail.com> <50A54713.8090102@sugarcrm.com> <50A549EB.2020408@lerdorf.com> <50A5FB0C.1080602@lerdorf.com> In-Reply-To: X-Enigmail-Version: 1.4.5 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Gm-Message-State: ALoCoQksPIVca6vci38zNEQa0Im0Wo+83ueAwLyVTgyObbcMsZn9QwoehXUNK/TI2zxY0lxj/bfU Subject: Re: [PHP-DEV] RFC: ext/mysql deprecation From: rasmus@lerdorf.com (Rasmus Lerdorf) On 11/16/2012 12:51 AM, Patrick ALLAERT wrote: > Rasmus, > > As per the RFC: adding E_DEPRECATED only in mysql_connect(), > mysql_pconnect(). Which means only one error (normally) by request. I still don't see the point of using E_DEPRECATED like this for an entire extension. And I think it will hurt more than it will help for an extension this heavily used. It is going to encourage people to simply turn off that warning because they will get it on every single request which means they will never see the more subtle and granular E_DEPRECATED warnings from other parts of their code. -Rasmus