Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:125088 X-Original-To: internals@lists.php.net Delivered-To: internals@lists.php.net Received: from php-smtp4.php.net (php-smtp4.php.net [45.112.84.5]) by qa.php.net (Postfix) with ESMTPS id 8D0A51A00BD for ; Wed, 21 Aug 2024 09:22:44 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=php.net; s=mail; t=1724232274; bh=ARnl33Mb0DM0M2jqLV3QRdzFEF4JiktRod3eJYvoqTs=; h=From:Subject:Date:References:To:In-Reply-To:From; b=gkPxtr4XRTbFSFr7WS9mnEKUumsRGuOnRi65YTETpgnJqmm/SLiCHw/xqjtax1z3C lvXF1uPR0e6APDbVmdNoqOZjURqDFQcxzN6ao1Dt8z75LVEQ3Tr/XYfqK50KbDlwnM aHKKIDybFPvg5hdQj7lsfXb9Xhv6ft5tBJCFN1596ndeaPPJZ5LYXE9XATXWHDg6f7 pH72eYGgJxmYL73QEgNArOblZqJ0k9nNfU2QeTO4hUUQoZCE09hkn3Es0UBGQQHeGG aIxfK3kPn0IiV7RL7yFNqiS6gSTg36NHhNDGaUQhoGTYZG/caHFT5e1BvRU9P4Iw0F P7A8nnf4EU23Q== Received: from php-smtp4.php.net (localhost [127.0.0.1]) by php-smtp4.php.net (Postfix) with ESMTP id B88E9180071 for ; Wed, 21 Aug 2024 09:24:32 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 4.0.0 (2022-12-13) on php-smtp4.php.net X-Spam-Level: X-Spam-Status: No, score=0.6 required=5.0 tests=BAYES_50,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,DMARC_PASS,SPF_HELO_NONE, SPF_PASS autolearn=no autolearn_force=no version=4.0.0 X-Spam-Virus: No X-Envelope-From: Received: from mail.gna.ch (mail.gna.ch [212.45.196.109]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by php-smtp4.php.net (Postfix) with ESMTPS for ; Wed, 21 Aug 2024 09:24:32 +0000 (UTC) Received: from smtpclient.apple (unknown [IPv6:2a02:1210:2e0f:4100:cd92:f947:228b:7477]) (using TLSv1.2 with cipher ECDHE-ECDSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by darkcity.gna.ch (Postfix) with ESMTPSA id C845D3A0F57 for ; Wed, 21 Aug 2024 11:22:40 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=cschneid.com; s=default; t=1724232160; bh=ARnl33Mb0DM0M2jqLV3QRdzFEF4JiktRod3eJYvoqTs=; h=From:Subject:Date:References:To:In-Reply-To; b=Q3xe8gFb1JT7Yqh1RnxTSTubeX9DYORztLUqEfYHNbfv9ix8u5UjDa9UUGiGzD41Q 7DZBLlELszvgpatsgXqhOC+LtQishxNknTuruknb5gdPM0pHt2/fPnGJxnh7OPsroF xY2FWympwUXL/kR+Mo/nw6mFdtKC/KFG8o6rr1ZE= Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: quoted-printable Precedence: bulk list-help: list-post: List-Id: internals.lists.php.net x-ms-reactions: disallow Mime-Version: 1.0 (Mac OS X Mail 16.0 \(3776.700.51\)) Subject: Re: [PHP-DEV] [Concept] Flip relative function lookup order (global, then local) Date: Wed, 21 Aug 2024 11:22:40 +0200 References: <8B2CA646-5778-4C66-A17C-8A30405A854B@cschneid.com> To: PHP internals In-Reply-To: Message-ID: X-Mailer: Apple Mail (2.3776.700.51) From: cschneid@cschneid.com (Christian Schneider) Am 21.08.2024 um 09:44 schrieb Faizan Akram Dar : > On Wed, Aug 21, 2024, 9:34 AM Christian Schneider = wrote: >> The point where I think we disagree is that it improves the code. It = may improve performance of the code (even though I somewhat doubt this = has a *significant* impact on most projects) but it IMHO hurts = readability. Writing the additional \ is less of a problem but as code = is read a lot more often than written I think the additional = "line-noise" is something I'd like to avoid. >=20 > You don't have to write additional \,=20 > you can add "use function" statements > if you prefer that style.=20 I think that is trading one problem for another: - Having to declare all global functions like strlen with 'use' is = (IMHO) unnecessary boilerplate which also needs to be kept in sync with = the rest of the code below - I am generally wary of top declarations changing "semantics" of code = further down the line. Being able to tell what is being done without = (far away) context is a feature and that's why I e.g. prefer = foo($GLOBALS['bar']) to global $bar; ... foo($bar). Regards, - Chris