Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:124749 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 648E41A00B7 for ; Sun, 4 Aug 2024 18:31:54 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=php.net; s=mail; t=1722796414; bh=L4NuG6VHL4rRCkHn0IH/msWOa3YVt7dCBm4M7LNG3kI=; h=Subject:From:To:Date:In-Reply-To:References:From; b=baJjYOm63wP/olrZvb3iwXdoNc0wC0SR9ZLZWtRQa/HMI5dABqVHNlTGXvlGlNMUG 3MxVuRfkBdarY0D2bjCj5aVSQLj9EPkmAlFtgc4bb/zZSFHYwDHHFesu3DtmNSGvNX 8tX08zjnZHCj0dn+2BBt0PD4MM1L9YWFTpxa6pBAkXTD8lGsbmhteTHtey5rI4yShM CFMm73WGFJfUbbbqwuO+OcU0ERs6yBt69rpfgegbssqVVbha7dKShfLu4f10ZVdA+I Uw2yonIV7/QonmgLZj7nSxnQW/rGShYPZrePCzyf6XoSBwOMKnPvYZWPZpww25Bjtx 71hTB5H+em3jQ== Received: from php-smtp4.php.net (localhost [127.0.0.1]) by php-smtp4.php.net (Postfix) with ESMTP id 2EF33180051 for ; Sun, 4 Aug 2024 18:33:34 +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.2 required=5.0 tests=BAYES_40,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,DMARC_PASS,SPF_HELO_PASS, SPF_PASS autolearn=no autolearn_force=no version=4.0.0 X-Spam-Virus: No X-Envelope-From: Received: from ageofdream.com (ageofdream.com [45.33.21.21]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by php-smtp4.php.net (Postfix) with ESMTPS for ; Sun, 4 Aug 2024 18:33:33 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ageofdream.com; s=ageofdream; t=1722796312; bh=L4NuG6VHL4rRCkHn0IH/msWOa3YVt7dCBm4M7LNG3kI=; h=Subject:From:To:Date:In-Reply-To:References:From; b=M2wXbu1pgIiGi8XOV6zWLIf9i7y+IEt82xQPnstY6+p7DaAsg9XuB8N0C0RokfmyS fupgMRHPs6tzHTD/lBe5nRaVxIgyOZe8ebcAcZq2G+hW7S6hL0sJLOJnvFKKPOEHd7 BgwlltPaGrYBmbu5CW7U/UaWcZagxe1GCbHibUkd5JDIk/yHbTONLTD+wGq9QZc1VF 0Ub+azTgsr7KV9d+xUs9vDurX12r+k8RdcNorIFq9G5S4nOR+RDda7VMDDRxHCQPqG CnNNeD2Fx4ePTASIA00h/laHK6kPkTsCc7W3kf9lqZjl3CFMPTcPn+/gHlDxrm3vHN JTcyLGEUSqwJA== Received: from [192.168.1.7] (unknown [72.255.193.122]) by ageofdream.com (Postfix) with ESMTPSA id 23B7527985 for ; Sun, 4 Aug 2024 14:31:52 -0400 (EDT) Message-ID: <53d4d4235e45fbe471179f4b95207a73890e9384.camel@ageofdream.com> Subject: Re: [PHP-DEV] [RFC] Add Directive to Make All Namespaced Function Calls Global To: internals@lists.php.net Date: Sun, 04 Aug 2024 14:31:51 -0400 In-Reply-To: <803741ef-7b51-4a92-8368-41e47f7783ab@gmail.com> References: <803741ef-7b51-4a92-8368-41e47f7783ab@gmail.com> Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable User-Agent: Evolution 3.46.4-2 Precedence: bulk list-help: list-post: List-Id: internals.lists.php.net x-ms-reactions: disallow MIME-Version: 1.0 From: lists@ageofdream.com (Nick Lockheart) > >=20 > > =E2=80=9CShould there be some way for developers to signal to the parse= r at > > compile time that all unqualified function names found in a > > namespace > > context are global, without a namespace lookup?=E2=80=9D > >=20 > > Yes: We should do this, let's discuss syntax possibilities. > >=20 > > No: This should not be a feature at all. > >=20 > > Thank you for your consideration. >=20 > Hi Nick >=20 > I'm not sure how I feel about adding an additional signaling / syntax > system > to signal the parser to change the behaviour of function lookup. > It means people have to take into account that a fundamental > behaviour can be changed. > PHP is already hard to use IMHO because of many things you have to > keep into the > back of your head, and adding something like this adds even more > complexity. > If we're going to make such a change I'd rather have it > unconfigurable. >=20 > Kind regards > Niels My thought was that it would have some clean and simple syntax, like: namespace foo using global functions; class MyClass{ } When the parser hits that token, it just sets a flag and acts like every unqualified classname has a backslash in front of it. For everyone else: namespace foo; class MyClass{ } ...would still work exactly the same as it does now. And would keep BC.