Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:124767 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 68E321A00B7 for ; Mon, 5 Aug 2024 13:33:20 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=php.net; s=mail; t=1722864901; bh=ktyr0l44C/xCM3v1EvQO/5yGP8MgYHpkjVoN6kimrN4=; h=Subject:From:To:Date:In-Reply-To:References:From; b=LYWcp9h1KZ40JnvwV0cWXpBx+heCFhDXYM3q+EV4E9MuaL6yMwNfgrSIDr8hB934c 9akEeN6NxFvd8jKY0Iv05p4IF8HpE/z+TJDblOb8MSlnUkyA9iy15ZuvY9XLxDOzGw RBWAbLSd5I0gawAokKVpE6MMQ109hGbs/ZV3GJfi/NhU0qAWi5IKYGCi3ORKRF/YSA Ac1xC/itXoDfLHN2lphQOfJ+5RewcHWkQvrKt2m6GvbyaqlLHagwRVzldfe+UWRIJF C+UZg4y4yY0mVzyWnpmJ0xn8wHsWhAH+nTwzmcb3p9zGzp74y116UTbOGJ9r8u2H2B TEfRDVvTIK27w== Received: from php-smtp4.php.net (localhost [127.0.0.1]) by php-smtp4.php.net (Postfix) with ESMTP id 9AB16180077 for ; Mon, 5 Aug 2024 13:35:00 +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) server-digest SHA256) (No client certificate requested) by php-smtp4.php.net (Postfix) with ESMTPS for ; Mon, 5 Aug 2024 13:35:00 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ageofdream.com; s=ageofdream; t=1722864798; bh=ktyr0l44C/xCM3v1EvQO/5yGP8MgYHpkjVoN6kimrN4=; h=Subject:From:To:Date:In-Reply-To:References:From; b=E1aKkuxJSvUE3df7DqifRWXoPpKF0rht0MgKUR0rlsBJTuttuBTo0JGEr4zxEuqN5 faJrHoaOm3QpifMl8czAayf3CK/eRvF0ukFuCEa2ChNtDMoHgdkw6OdRNOUmZXMTzo /LTB4umNyxTqMykOAusv/lJHy+OgOGD0r1UoYp2jNJt7TwXCt8OqghUBNUWAHMrqo0 pFlGt31NgfQmjZBuVIupfo5ulylxoCe1ceEMsZZSrq8CW3bto8HPYA9n12LEQ42zdt 1ibBDq4na5cLAaiixegMC1qjHo60IZ5rzLOny28b9viEYgk7P+p91fiF0PhZL9u8se hB/2xhjZcMTaw== Received: from [192.168.1.7] (unknown [72.255.193.122]) by ageofdream.com (Postfix) with ESMTPSA id 278BD25095 for ; Mon, 5 Aug 2024 09:33:18 -0400 (EDT) Message-ID: Subject: Re: [PHP-DEV] [RFC] Add Directive to Make All Namespaced Function Calls Global To: internals@lists.php.net Date: Mon, 05 Aug 2024 09:33:17 -0400 In-Reply-To: References: <1a88918e-e808-d778-45e1-53797660e093@php.net> <3563cf9b-8eab-4c82-b525-a5d2f9a767bb@varteg.nz> <38920A4B-790D-48C7-B2F6-C49D3F506232@rwec.co.uk> <0824789d-0e36-4628-85c1-4b8d9b7f86af@varteg.nz> <2244a37f-8c51-448d-8a56-329ff32e6470@bastelstu.be> <0e1a21ddef3c7da17a3539b92d5f442763f4b1f8.camel@ageofdream.com> <5f1da5195e2aea7ec41e95ff4354f50b1717d3cf.camel@ageofdream.com> <599a445530357d080cb59c9443cacd5cfd5da82f.camel@ageofdream.com> <896ef99559e4e71d8f1c3abc47415b37ae325e55.camel@ageofdream.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 > Consider this example: >=20 > namespace Foo; > echo time(); >=20 > With my proposal, this would now always call the global time() > function. You were suggesting that "using local functions" would help > mitigate this, but I don't think it does. >=20 > * The user can't add "using local functions" to this file, because in > a production environment where ClockMock isn't used, there is no > local > time() function. With "using local functions" having no fallback, the > global function would not be called, and hence the code would error. > Your proposal would only help if the semantics were "use local > function if available, or global function otherwise", which is what > we > have currently. > * Symfony can't enable the "using local functions" option either when > including your file, because it would require modifying the source > code. That leaves eval(), which would really already solve this > problem if you replace calls to time() with something else. This is a different problem that could be solved by a sandbox API. > Well, ok. But then we're back to prefixing global calls, which > defeats the purpose of the proposal.=20 Global functions would only need a prefix `\` in the *very rare* cases where local functions are set as the default. For most people, the \ would be omitted, as globals would be set as default for unqualified function names.