Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:125424 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 AE7CE1A00BD for ; Wed, 4 Sep 2024 20:17:23 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=php.net; s=mail; t=1725481161; bh=jKcZ2zfJthkzbuxDJRtabu5vFFNKmofI48p53Y5/N1k=; h=Subject:From:In-Reply-To:Date:Cc:References:To:From; b=QADbKz1MQ0NmRJcr1AuV0qyV5gcbGsQ4FqJqHmMl8eAgdqBcgYFOdxBX53WKuNaH+ kvCOw1hWT7fyIV5gMPTWfK3HtyKLdMqnPUAlWXT6wusCfKyeM9/odx354OSm4Ru61M o1nn3FHdV/XSKROWi+lZaA/wEUQHzA9S1YBhQ3WYQrwTXop/Hy/LPnTrjDYXIZ1/kC VJwpXpqVGXpJQNokIlZGHyoSO765Q4B9dZOTXVOvbbhS5pvfHrla4+cnwCq6dlRbXt 68Jkr0ehOtnwSUFSFw961KxhHEbtXDaRhIvGx+CcKzhNRSemwywjCzua2BfsSffhWH L9FkGfV+6Pf8w== Received: from php-smtp4.php.net (localhost [127.0.0.1]) by php-smtp4.php.net (Postfix) with ESMTP id 0580C18006E for ; Wed, 4 Sep 2024 20:19:19 +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 20:19:16 +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 1ED57200ECA02; Wed, 4 Sep 2024 16:17:18 -0400 (EDT) DKIM-Filter: OpenDKIM Filter v2.11.0 nebula.zort.net 1ED57200ECA02 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=zort.net; s=zort; t=1725481038; bh=+/akXekq5r0eOnrzaplYXgJPL9n1Zos25LhtoSmx9H0=; h=Subject:From:In-Reply-To:Date:Cc:References:To:From; b=d7JS6zR/6/gM/SsahrQCmOCRcLwdzsRZIkeWLH0EC01rfDc0qTX2f7oyYoy0ySea/ zVS1H+LnUSbOBjPUkFt9vGvryASU4wr9xyvPwC1cfQXJlqYxXMAvfnx8U6EUieLqiy kiI6VSyncYsm+lCKXa5L/GbUFxg5PBE2sQG22Mnk= 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: <27c3909f-05f4-4256-a447-10e8d8760fff@app.fastmail.com> Date: Wed, 4 Sep 2024 16:17:07 -0400 Cc: internals@lists.php.net Content-Transfer-Encoding: quoted-printable Message-ID: References: <27c3909f-05f4-4256-a447-10e8d8760fff@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 15:23, Rob Landers wrote: >=20 > On Tue, Sep 3, 2024, at 05:20, HwapX wrote: >> Hello internals! >>=20 >> I was wondering, has there been any discussion about supporting local = constants (variables that cannot be reassigned, perhaps even function = parameters)? >=20 > Out of curiosity, what value would this bring to PHP? In my = experience, modern php methods and functions tend to fit on a single = screen, at most being a few hundred lines for complex logic. >=20 > =E2=80=94 Rob This is about semantic clarity. If you define a variable as a constant, = then, not only do you know for certain that it cannot change, you are = also stating "it is my intent to not change this variable after setting = it", and so if someone later tries to do so, they (should) have to = answer the question, "*why* do I need to make this variable change?". If it's useful to be able to annotate class members as being "readonly", = it is likewise useful to do that on a local scope. With sufficient compiler support, *typed* constant variable declarations = might also allow for this: let SomeType $foo; //or readonly, or writeonce, or whatever =09 if($something) { $foo =3D ...; } else if($somethingElse) { $foo =3D getSomeString(); //Error, type mismatch; = possibly catchable at compile time, definitely with static analysis } else if($thirdCondition) { $foom =3D ...; //oops, typo } else { throw new Exception(...) } =09 doSomething($foo); //Compiler error: $foo not initialized on all = call paths. } You might also tighten scoping with such variables: foreach(...) { let $foo =3D //local working variable; possibly even = shadowing a variable in the parent scope } //$foo is undefined; you can't access the last-set value from = the loop outside of the loop Static analysis can catch all these errors, but it'd be nicer to be able = to do it without requiring docblocks. The language providing tools for = being more explicit about intent in code is never bad. -John