Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:125109 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 841F51A00BD for ; Fri, 23 Aug 2024 08:08:28 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=php.net; s=mail; t=1724400619; bh=iY7zm1U+RQDo1J61R0ZlrwcCpwwZ1cHIC685rBTVDec=; h=Subject:From:To:Date:In-Reply-To:References:From; b=FlAkIi4mG1SWCcSakgF7YzUTdXDjtCO38x26G8J6h4/InB9yBx3dda5JJVO5VUx9C rL4KmqfhZgCSM2w0zUsawQM4QEpNDw9W6+YRNEaCIUey0KdYAHWboZh4Hd30haUznw XCpirnkIH1XFblVkdUnd6O2dVgGnvYCX5ufwZic5eqeBM/iL5tZGKT/sHgAWjRToFn lIEsk3G9cTdontxdRsi98Msw/uLZoyOpJ3Y3qdI5jExL8A8/YLwv+H1dEf1UPARZmw Ak6OJUVrH/4KyYQTcLAC5/fDgNHltRB96HBChaQx5wCoVp7UTdLA6JK08FNQ1AaZNZ 7Gdewt+bNZvHw== Received: from php-smtp4.php.net (localhost [127.0.0.1]) by php-smtp4.php.net (Postfix) with ESMTP id 8FB9A18003E for ; Fri, 23 Aug 2024 08:10:18 +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)) (No client certificate requested) by php-smtp4.php.net (Postfix) with ESMTPS for ; Fri, 23 Aug 2024 08:10:18 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ageofdream.com; s=ageofdream; t=1724400506; bh=iY7zm1U+RQDo1J61R0ZlrwcCpwwZ1cHIC685rBTVDec=; h=Subject:From:To:Date:In-Reply-To:References:From; b=dY5+JS02hCtvi0uIMEARRWbwv5lO8KJW1BbXVi3Sc5h3SlhNlwd7a1v7LJtR4u/ix o0rdWMvYu/Xc5SHCDXIlE3TOeu+u9vtqLyys41lmaVGgbSfrafyo2yUENFhoRrnizo 9XP17mIASxHDkcYx8Vqst6F5DdWfa+Hp9A0g/ja7Dd935jj/9povuat2a/5B2wjdjt H9exJt/3G7gKBE2qEQV+bHhALLpHPSlLw2mdtixtrBglI+ihnYXO5/NYHmbkenRzpH StAkx2L7oCIuIaD1S+7tBeaXbGsM/wCYRi7R8B4bL0+GbDvLudG+YRPi657t9WlNvH OK3d9EhIbvpmQ== Received: from [192.168.1.7] (unknown [72.255.193.122]) by ageofdream.com (Postfix) with ESMTPSA id 47A6325095 for ; Fri, 23 Aug 2024 04:08:26 -0400 (EDT) Message-ID: Subject: Re: [PHP-DEV] [Concept] Flip relative function lookup order (global, then local) To: internals@lists.php.net Date: Fri, 23 Aug 2024 04:08:25 -0400 In-Reply-To: <790534cd-e158-4712-878c-642dfd0e2bad@app.fastmail.com> References: <846D7756-712B-4A7C-9FC6-DB9F858836B8@rwec.co.uk> <880ffc27dc9b421407a670c75d5f5ba756870396.camel@ageofdream.com> <790534cd-e158-4712-878c-642dfd0e2bad@app.fastmail.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 > If we were to go with any major change in the current lookup where it > is perf or nothing, this is what I would propose for php 9.0 > (starting with an immediate deprecation): > =C2=A0=C2=A0=C2=A01. any unqualified call simply calls the current namesp= ace > =C2=A0=C2=A0=C2=A02. >=3D php 9.0: no fallback to global > =C2=A0=C2=A0=C2=A03. < php 9.0: emit deprecation notice if falls back to = global > This is how classes work (pretty sure), so it would be consistent. >=20 > Going the other way (global first) doesn't really make sense because > it is inconsistent, IMHO. Will it suck? Probably. Will it be easy to > fix? Probably via Rector. >=20 > =E2=80=94 Rob A third option, which I haven't seen come up on the list yet, is that unqualified functions that are PHP built-ins are treated as global, and using a function having the same name as a built-in, in a namespace scope, requires a fully qualified name to override the built-in. It seems that if someone is writing `array_key_exists()` or similar they probably mean the built-in function, and in the rare cases where they do mean `\foo\array_key_exists()`, they can write it explicitly. Functions that are *not* on the built-in function list could default to the local namespace.