Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:124585 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 237A11A00B7 for ; Thu, 25 Jul 2024 03:22:55 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=php.net; s=mail; t=1721877869; bh=4kCzRt0BgCrR+l1OGG+o3hSOuUFMH2+sjHcCO5O9TB0=; h=Subject:From:To:Date:In-Reply-To:References:From; b=cLQjow5Jz8u+HvROE39M/BoKKs47An1SlTny/pcxjnFzVzItlMtTWb0of+2BjKwaR KDrdxEk4I47a+sA7ZNWeoASRrSGf89fb4DoQPb4labPCQi82f2WtXh6VOeO3qD1s0d qzDHYZBy5xLxV2s58ub1xCWgj5Kddlv33uqpzV6svLmacAZDiXlOCnDjPLHUZxaVla xo3zo1Y4vsKX4n7OZi35yf69MfmmdYMoFwQebeuWOtoUUgT392oHUeLnVEp8NKmG3P MiB7zu4/TXyHP1xAUHvnvI3DbSKaBfPoow+ewCMSy01yII+836tc4sy52yNTEl1MA6 mca7w70HRyHLQ== Received: from php-smtp4.php.net (localhost [127.0.0.1]) by php-smtp4.php.net (Postfix) with ESMTP id B72EC18005B for ; Thu, 25 Jul 2024 03:24:28 +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 ; Thu, 25 Jul 2024 03:24:28 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ageofdream.com; s=ageofdream; t=1721877772; bh=4kCzRt0BgCrR+l1OGG+o3hSOuUFMH2+sjHcCO5O9TB0=; h=Subject:From:To:Date:In-Reply-To:References:From; b=HWYzhKrgUu6hPFktmG/LXqdSeOQC1L8MevE0ut3qFH3pwvqHxUDmJz0T39EmWsna2 rCdRDszay5SO89EqdGDzrnZtR2yHc01w6sMQ/mHVClR8+mmGIULhNIjeOCyqxxQ8JS 40GnmEkgExdzfqtD4ygMdX13MpRNs8E1cB8XpAEOzHhv+xNCnIbbthPWcLg4lW5FF+ n+AHs1MP7rYWzElb7HZPxc8XowXlisGc7J/YE2Urh38ENOiP0t3lxr0E4UG5yuSrR6 dPHQRikG9IGsXewnxXqkCNVAxyy+WHG5nXzfU2jpcerPwAUCFXE31mc1gIJkSC8Bge 4Z/3LRsyVcj5Q== Received: from [192.168.1.7] (231.subnet-69-85-112.ellijay.com [69.85.112.231]) by ageofdream.com (Postfix) with ESMTPSA id B59422750D for ; Wed, 24 Jul 2024 23:22:52 -0400 (EDT) Message-ID: Subject: Re: [PHP-DEV] Should PHP reserve a namespace for built-in classes? To: internals@lists.php.net Date: Wed, 24 Jul 2024 23:22:52 -0400 In-Reply-To: <86b7e340-6ca9-4b3c-af0a-a5c2d1ee68c3@bastelstu.be> References: <76559a9cd5eca4bc6799ed9612ce15c28cd7cb0a.camel@ageofdream.com> <95f6046a-4acf-4f8a-a850-a23650c0c6b3@bastelstu.be> <927705b0404e70b0f0ade4a3354b2598d7c112f9.camel@ageofdream.com> <86b7e340-6ca9-4b3c-af0a-a5c2d1ee68c3@bastelstu.be> 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) On Wed, 2024-07-24 at 22:02 +0200, Tim D=C3=BCsterhus wrote: >=20 > > I think a better solution would be to have one namespace for all > > bundled classes, so that a specific namespace is reserved in > > advance. >=20 > Needing to prefix everything by \PHP or something like this would=20 > provide for a terrible developer experience when using the standard > library. We're already there. If I want to have a Directory class, I need to put it in a namespace. But then, if I'm using namespaces, I need to put a `\` in front of every built-in class *and* function or else take a performance hit. So we're already where we need to do \isset, \array_key_exists, etc to get the built-in functions without doing a local namespace lookup first. I think there are several things to consider here: 1. Could we have a global setting (maybe php.ini) that makes all built- in functions (not built in classes) directly accessible in any namespace? That is: // php.ini AlwaysUseGlobalFunctions =3D yes Then: // myclass.php namespace foo; class Bar{ function MyMethod($a,$b){ if(array_key_exists($a,$b)){ // no \ before array_key_exists // do something } } } And with that option set, PHP will know that array_key_exists *is* \array_key_exists, even without the slash, and without checking the foo namespace for an array_key_exists function first? My understanding is that some built-in functions have their own opcode, that doesn't get triggered when those built-in functions are called in a namespace, unless the built-in is called with a `\`. Having all *functions* default to global would make namespaces a lot more user friendly to work with, since we wouldn't have to put backslashes in front of everything. 2. I think built-in classes are nice, but having classes pre-registered in the global namespace can cause a lot of frustration. ie. "GlobIterator::__construct() expects at most 2 arguments, 3 given". Except, my GlobIterator takes exactly three arguments, so why does.... Oh. I see, there's already a GlobIterator registered. I think the sane approach is to have the (user land) developers pull built-in classes into the global namespace when needed with `use`. If I want the built-in GlobIterator, I should specify that with: use \spl\GlobIterator; Then I know there's a GlobIterator class because I just called for it.