Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:125065 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 B9B4E1A00BD for ; Tue, 20 Aug 2024 08:41:25 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=php.net; s=mail; t=1724143394; bh=pZSdfIwUHbnsrVu9fBA/0JLkILxnCXSv2ktx3y50hHw=; h=Subject:From:To:Date:In-Reply-To:References:From; b=NSeaq5prER5+6FlZY5Yl9gA22QM/OOJDL9dwiQNdHqF6B1sXWTnSok+GARm02zXvc c+g9F3zErIJGG4Ff4WqeImsH01UBS/pAU4JezDkM3RVDMA/63r8SaBPwo24YbC1LHU WhQ122DI0ki8QUMYPExrbJYY+uFIPOKNz+LbWppQyZLdr70eH9dhKw+ZhRT4Iz8uw7 tYFB3CS1AXl2GdRa2pGKrd/npwmHvW7otjrt4kxMPgYP3UIVKtgCrJKsPbkpr39uhc GJc1P/XActglbMO0Zpv4XmKZ1kIIWiv5HST/AD/NHVAM1ZVQA1XtNYWIW+N7BP1qO/ seUEwT25Bp6pg== Received: from php-smtp4.php.net (localhost [127.0.0.1]) by php-smtp4.php.net (Postfix) with ESMTP id 1D111180055 for ; Tue, 20 Aug 2024 08:43:14 +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_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 ; Tue, 20 Aug 2024 08:43:13 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ageofdream.com; s=ageofdream; t=1724143283; bh=pZSdfIwUHbnsrVu9fBA/0JLkILxnCXSv2ktx3y50hHw=; h=Subject:From:To:Date:In-Reply-To:References:From; b=p75HRITpPulpdhf2Rntz1tnKmwyhMqQFinSLIgEw6W6U11E+arFcx4MdJD3WZPm/+ +lhmgdGhiG/h4jnotP1irAhyVqS92w0QmwLKJEJJUSOngEFw6caFwVPdSixLUUp+0d bVD+yg9cEggs0HbIModWtnPUrfNdAK1uhIpxssXyBcEdZ4W5e4ro1EiZU5TAaVmqtO n1ED0ksVhb6sWfeFCfVhpD36ONK0kgSVlJ+XKMPh87SIKUmkFsK7a/eLFoYFnCF+KG dXJF3WdFYOdsrB3rlE+Lrs0h7dj2z6pXXvS3OdvfMLUsMjgtdrgayG+ImNH6w+0iFY nDwLPwF0oxAXA== Received: from [192.168.1.7] (unknown [72.255.193.122]) by ageofdream.com (Postfix) with ESMTPSA id 7EDC52788A for ; Tue, 20 Aug 2024 04:41:23 -0400 (EDT) Message-ID: <095f08ad4406a2166b3c5ddf472959daceef6502.camel@ageofdream.com> Subject: Re: [PHP-DEV] [Concept] Flip relative function lookup order (global, then local) To: internals@lists.php.net Date: Tue, 20 Aug 2024 04:41:23 -0400 In-Reply-To: References: 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) > We would upgrade that to a warning in PHP 9.2, and it would end up > being an error on PHP 10 and have a BC break. >=20 > I don't think adding a \ to each function call is ugly, that's what > we have for classes, and it works fine; or an use statement. >=20 > So, why do we think that after people get used to it,=C2=A0they would > still consider it ugly? Never heard the "ugliness" mentioned=C2=A0for > classes. Respectfully, I think `\` is ugly for both functions and classes. > Now, I know this would be a big BC break, but it brings consistency > to the language and forces everyone to improve their code > performance. There should be a directive for this, like: namespace foo using global functions; ...which automatically acts as if all functions have a \ in front of them, unless they are fully qualified.