Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:50370 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 73634 invoked from network); 18 Nov 2010 20:22:33 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 18 Nov 2010 20:22:33 -0000 Authentication-Results: pb1.pair.com header.from=patrick.allaert@gmail.com; sender-id=pass; domainkeys=bad Authentication-Results: pb1.pair.com smtp.mail=patrick.allaert@gmail.com; spf=pass; sender-id=pass Received-SPF: pass (pb1.pair.com: domain gmail.com designates 209.85.161.42 as permitted sender) DomainKey-Status: bad X-DomainKeys: Ecelerity dk_validate implementing draft-delany-domainkeys-base-01 X-PHP-List-Original-Sender: patrick.allaert@gmail.com X-Host-Fingerprint: 209.85.161.42 mail-fx0-f42.google.com Received: from [209.85.161.42] ([209.85.161.42:36902] helo=mail-fx0-f42.google.com) by pb1.pair.com (ecelerity 2.1.1.9-wez r(12769M)) with ESMTP id E7/13-01108-80B85EC4 for ; Thu, 18 Nov 2010 15:22:33 -0500 Received: by fxm16 with SMTP id 16so1500502fxm.29 for ; Thu, 18 Nov 2010 12:22:30 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:received:in-reply-to :references:date:message-id:subject:from:to:cc:content-type :content-transfer-encoding; bh=XRWRe1JEQC62ZIyd1LSGqct/ddW4j/yDqeKihDlbeOc=; b=AbhmtJxAYqUyUIm3R1Wf6wt5xti1Usq70Bi0OfvQR5pZF9bU1nf//9pwfMQ8DsWMuQ 4qv8zaksV6JbvpI4f/u/zUzwiegBkBI67Z6C/78DO4z2DN4Ht72QAqYXIyIWUITQCVnC hl7vtnEh1g7YVDfKp5aLUVf0TtfTf4DcWWfOo= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type:content-transfer-encoding; b=Uf14PoywU3mw7M5OuHKqAZtFKTcqjClST3tjeRG/3BgUyXaxsRXvKMjbNug5dDQ+3w YvEGzhysqL41qxO51hklTmFKe+/5X7zZToCwMsIt3pTlNXHuoRH3tW0pJwRYu/EjWWr/ 4TiOqEGlNB9bU+UbqQeEHn4rVYP4egpo1aVNo= MIME-Version: 1.0 Received: by 10.223.86.4 with SMTP id q4mr23360fal.20.1290111749998; Thu, 18 Nov 2010 12:22:29 -0800 (PST) Received: by 10.223.83.194 with HTTP; Thu, 18 Nov 2010 12:22:29 -0800 (PST) In-Reply-To: <4CE56978.9050102@oracle.com> References: <4CE537B0.1030607@zend.com> <4CE56978.9050102@oracle.com> Date: Thu, 18 Nov 2010 21:22:29 +0100 Message-ID: To: Christopher Jones Cc: internals@lists.php.net Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Subject: Re: [PHP-DEV] --enable-zend-multibyte From: patrick.allaert@gmail.com (Patrick ALLAERT) 2010/11/18 Christopher Jones : > If the overhead of zend.multibyte=3D0 is negligable, then why not remove > remove the configure option altogether? =C2=A0This would reduce the > complexity of the implementation and simplify building & maintenance. > Why have two interdependent ways to get the same outcome if one way > will do? AFAIK, the overhead is not negligible hence the configure option rather than ini setting. Your remark is however valid concerning the maintenance! The benefit I see is that it enables the testing of an application with our without this feature with the same build of PHP. Is it worth?