Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:124577 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 F09B11A00B7 for ; Wed, 24 Jul 2024 17:43:50 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=php.net; s=mail; t=1721843125; bh=4tuhEu53SX01hUQlkLpPzQbMt+loO+x3zJBOQ6UxezE=; h=Subject:From:To:Date:From; b=dtSFQiaV0oCMzq3F42rDqJLApStRRyp5Y6/roXnADveGuy/21zwh3zfOC41UMzi8t ofZ+yEt+pbkm+mYyLJIQDet50k6xEKcWLw0+GEaZV3GbRbBOGHe3gaJYCTAPVWmuET 2bgI9XSxq0znz+qhzC2S1HfNv+l8it9XXuqVBBBuslw2fhSd/sCBLXMHbI4v5S1cyi wjFFdGGSrxOdr1s3EgL3L5XNGwrN0nvnSOOgzluNk25Ncr7WLJU/A98IBMLV1F1acK fH1EdW+lY8vLus005tgPSuanAd6iZOQKZpASLIpSRGiaPM8E1it1LhPWzQe1vtlPhc 1JcE2k64qhVHQ== Received: from php-smtp4.php.net (localhost [127.0.0.1]) by php-smtp4.php.net (Postfix) with ESMTP id 7F95918005B for ; Wed, 24 Jul 2024 17:45:24 +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 ; Wed, 24 Jul 2024 17:45:23 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ageofdream.com; s=ageofdream; t=1721843028; bh=4tuhEu53SX01hUQlkLpPzQbMt+loO+x3zJBOQ6UxezE=; h=Subject:From:To:Date:From; b=GxGRVMmuFRhYnx9ImTEovHXtAE3Mq2cQqCtnyhWdQSbTfhBxjYhgFd3v8tXZ/5VxU x8U3JSvd7xabsNi880IMQrN9I1f8qZAwi0gUZHM3ivvSY2EBIVmZ0X+Av7frZxpriF bJi15TsZ6bxq4ajkwJYWHwBhHGqR2LK7KOx60KbxGEw+VKQ/7amxSXGd79ydUva9ht WCMwaToD8O0sIF5b6H1iJ6qhQVmu5ccOkDtBKPpcyFW8TtxiNYw+Zad4pd87Tp49xx 1Fysfb3z8m1BkaOIt96Uf/vf8Va/SuVEq97HPAMJULuzUT98R5utxE9MOaQqLLIgak ipN8mAdHERjDQ== Received: from [192.168.1.7] (231.subnet-69-85-112.ellijay.com [69.85.112.231]) by ageofdream.com (Postfix) with ESMTPSA id B8F532508F for ; Wed, 24 Jul 2024 13:43:48 -0400 (EDT) Message-ID: <76559a9cd5eca4bc6799ed9612ce15c28cd7cb0a.camel@ageofdream.com> Subject: [PHP-DEV] Should PHP reserve a namespace for built-in classes? To: internals@lists.php.net Date: Wed, 24 Jul 2024 13:43:48 -0400 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) What is the general feeling about reserving a namespace for PHP's built in classes? As the number of built-in classes grows over time, the chances of naming collisions with user classes will grow. When naming conflicts occur, they happen in an unexpected way, that does not make it readily obvious that a name conflict has occurred. That's because most projects use auto loaders, and the auto loader only runs if a class is unregistered. If a user creates a class called "Directory" and places it in the auto load path, then tries to instantiate it, they will *not* receive any error. If the user then tries to call Directory::MyMethod(), they are told that the method doesn't exist, even when they are staring at the class definition. The user presumes that the auto loader has found and loaded the class, because there isn't a "class not found" message. If new built-in classes are added in the future using common dictionary words as the name, there is a good chance of confusing breaks when the PHP version is updated. Now that namespaces are a thing in PHP, maybe we should take a page from C++'s book and have users include the standard library classes they want, when they need them. ie: use \spl\Directory; I'm also wondering if there would be any performance benefit to not having a bunch of internal classes pre-registered "just in case".