Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:125430 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 02B9E1A00BD for ; Wed, 4 Sep 2024 21:11:37 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=php.net; s=mail; t=1725484415; bh=7JOJ7HgssFy693GWWCflE1DGgMN9o8ujdlxLvoyaFAo=; h=Subject:From:In-Reply-To:Date:Cc:References:To:From; b=Ap1QErR+WWsGwAdCISR8x1Keni2mQJzz1Nrj+f1zxKD9ZdefuN3CCvTjO2H3h9Q2v nvZ4EUEjLWe45M5ErccEHB6RvEfbjp2jT0JYr0ezPSFkwF8NGjxMJpqM7tnCHyIntt nRsyAWMOSkIyHSzaJaCLRlfF33TMjdD7OUGYFg/C8cs+X9IqKmxfPVggniD2lnQrKm tsTJjfysw5Fp/K4aweNX+4WINFduPrOqrja9rswvzDv1DdttmzQefZNkS/PxdP8TLJ Q5prWF376nSJbgmgL+6LW392VpDDHbKiwvXtNWYry26IleHz/3oNPOFSWFj+gsKz2I paQ9puwt0KLGw== Received: from php-smtp4.php.net (localhost [127.0.0.1]) by php-smtp4.php.net (Postfix) with ESMTP id 1BF90180055 for ; Wed, 4 Sep 2024 21:13:35 +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_MISSING,SPF_HELO_NONE, SPF_PASS autolearn=no autolearn_force=no version=4.0.0 X-Spam-Virus: No X-Envelope-From: Received: from nebula.zort.net (nebula.zort.net [96.241.205.3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by php-smtp4.php.net (Postfix) with ESMTPS for ; Wed, 4 Sep 2024 21:13:34 +0000 (UTC) Received: from smtpclient.apple (pulsar.zort.net [96.241.205.6]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by nebula.zort.net (Postfix) with ESMTPSA id 029A9200ECA2F; Wed, 4 Sep 2024 17:11:35 -0400 (EDT) DKIM-Filter: OpenDKIM Filter v2.11.0 nebula.zort.net 029A9200ECA2F DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=zort.net; s=zort; t=1725484296; bh=aFM1Ok48/ZtMEY1OnaK9wr2DYMCaaSwLg/2u/PYzH74=; h=Subject:From:In-Reply-To:Date:Cc:References:To:From; b=KGHXMatO7gmDx5PG0ry4+JKQu2uWuaF9kNSqepFCB/Zj9wNjVrSqEHm+I3PzkLuUR kxjB4Fg9D9JRnGxkJLV81ue+AR0wn1WRhz/YJUr6hB16RSv9ud4DvhYWgtgTt9TPy9 jfJpCRLekMRucJRUxGcydVTnMYaPKnYoAiSgbWXM= Content-Type: text/plain; charset=utf-8 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] Local constants In-Reply-To: <420bb5cb-5fca-4f2e-8c68-0ca327cd3392@app.fastmail.com> Date: Wed, 4 Sep 2024 17:11:25 -0400 Cc: internals@lists.php.net Content-Transfer-Encoding: quoted-printable Message-ID: <7A98532B-7465-4FC5-B7A9-993E7D430EE1@zort.net> References: <27c3909f-05f4-4256-a447-10e8d8760fff@app.fastmail.com> <420bb5cb-5fca-4f2e-8c68-0ca327cd3392@app.fastmail.com> To: Rob Landers X-Mailer: Apple Mail (2.3776.700.51) From: jbafford@zort.net (John Bafford) > On Sep 4, 2024, at 16:45, Rob Landers wrote: >=20 > I think, conceptually, this makes sense, but maybe I'm the only one = who writes >=20 > $arr =3D doSomething(); > $arr =3D array_map(fn($x) =3D> $x->prop, $arr); > $arr =3D array_filter($arr, $filterFunc); >=20 > instead of >=20 > $arr =3D array_filter(array_map(fn($x) =3D> $x->prop, doSomething()), = $filterFunc); IMO, that's a failing of PHP not supporting object syntax (and = reasonable api) for non-object values. In other languages, I can write = code such as: let arr =3D doSomething() .map { $0.prop } .filter(filterFunc) Which is more readable than both PHP versions. > And I feel like having constant variables would result in more of the = latter, which I feel is more unreadable. Though I do note that my = opinion of what is readable might be different from other people's. >=20 > That being said, I would much rather see block-scoped variables than = local variables via let or var or something: >=20 > var $aNumber =3D 12; >=20 > foreach($arr as var $item) { > echo $item; // item exists here > } >=20 > echo $item; // item doesn't exist here >=20 > PHP is simply too verbose to really benefit from local constants, but = would benefit from block-scope far more. For example, with local = constants, you couldn't write that foreach because that variable exists = in the scope of the function and can only be defined once. >=20 > =E2=80=94 Rob I'd suggest that the foreach could be written with either of let/var to = both locally scope $item, which would explicitly disallow/allow $item to = be changed while in the loop. Another benefit of local constants is preventing accidentally reusing a = prior variable. For example, if I set a temporary variable to something, = and then later in the function, reuse that same name for a new temporary = but don't set the value on all flow paths, then the value from earlier = in the function leaks through, whereas either using a constant, or a = second explicit variable definition would have exposed and/or prevented = the issue. -John