Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:124826 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 89C941A00B7 for ; Wed, 7 Aug 2024 14:28:00 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=php.net; s=mail; t=1723040982; bh=RlOzO4YjToJioNggmvAphdLLIv5p4Y5JkiXAVuTaxeY=; h=Date:From:To:Subject:In-Reply-To:References:From; b=PfIKrFeWjVK8ECJ4CO5Ihkm6Q1+4hbNmWk1HltgIUXfEg65+HFaTgGgv8QJmA4jgj AHT+5AkSmc0+GDia/R3u49sTwM6WoKz0qqHMH0s8rZ938n4cClCBX2ptV3dElCq6sV CHGnAua5yjnfXFzlsWexg/Ha2/2UkhfmCpDgvnGt917DXkkgX00T5L+wbzD9mzUrdb oQBJiNbr3/15DJoQrqSBXNmOBpErogGYmZZhCI22ix5MO5LlSomZ7DwBc7qMBsrWBQ FxKWJkFJyqJ/ANhtYGTjJHv3Bvkmgn6bv/r8P9HRMVC2S8UQKfP7X5JNglnhU6fGkJ 5F1nzQerc8dCA== Received: from php-smtp4.php.net (localhost [127.0.0.1]) by php-smtp4.php.net (Postfix) with ESMTP id A5E98180069 for ; Wed, 7 Aug 2024 14:29:41 +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=3.6 required=5.0 tests=BAYES_50,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,DMARC_PASS,SPF_HELO_PASS, SPF_SOFTFAIL autolearn=no autolearn_force=no version=4.0.0 X-Spam-Virus: No X-Envelope-From: Received: from xdebug.org (xdebug.org [82.113.146.227]) (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 ; Wed, 7 Aug 2024 14:29:41 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=php.net; s=mail; t=1723040877; bh=RlOzO4YjToJioNggmvAphdLLIv5p4Y5JkiXAVuTaxeY=; h=Date:From:To:Subject:In-Reply-To:References:From; b=R0mULutg46AQfh3WYmKWDDM+IO609C3CL6cYFOHC08WBlJ/n2b0t4hAW16nelxHD9 0jPb8/6wmYXwdQ2co8zpg3k4uTjfT7fVbbpxiKubQWdkCpGsMu9mrgyNxHloH3FoWm pMdmPrtpkHV/Wp3SqKfNNep89+LDx2W+8zhx05RcADIi9/AEzbAyfMWAvjPCnvaMc3 b0DxXEk0FGsJiF765TMjMTHUMb2ZV5p9+i2drY3cSNsvDMl74SkmnhDOA/SQqP3pMq eF6NyPnqlBjtVMQm+zn2hsQ+yG+eTd3QGlxkIaLhE4p76G/7ZHTJ9M/gdMii5/4wcQ igJJnM4Tjk36Q== Received: from [127.0.0.1] (unknown [148.252.146.247]) by xdebug.org (Postfix) with ESMTPSA id 2D0B410C027; Wed, 07 Aug 2024 15:27:57 +0100 (BST) Date: Wed, 07 Aug 2024 15:27:56 +0100 To: internals@lists.php.net, Theodore Brown , "Gina P. Banyard" , PHP internals Subject: =?US-ASCII?Q?Re=3A_=5BPHP-DEV=5D_=5BRFC=5D_=5BVO?= =?US-ASCII?Q?TE=5D_Transform_exit=28=29_fro?= =?US-ASCII?Q?m_a_language_construct_into_a_standard_function?= User-Agent: K-9 Mail for Android In-Reply-To: References: Message-ID: <0FA837CD-60C3-4F4C-9044-C44FB0AF5788@php.net> Precedence: bulk list-help: list-post: List-Id: internals.lists.php.net x-ms-reactions: disallow MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable From: derick@php.net (Derick Rethans) On 7 August 2024 14:30:24 BST, Theodore Brown wr= ote: >On Tue, July 30, 2024 at 03:49 G=2E P=2E Banyard wrote: > >> Hello Internals, >> >> I have just opened the vote for the "Transform exit() from a language c= onstruct into a standard function" RFC: >> https://wiki=2Ephp=2Enet/rfc/exit-as-function >> >> The vote will last for two weeks until the 13th of August 2024=2E > >I really appreciate RFCs like this which not only make the language more = consistent for userland developers, but also simplify PHP's internal implem= entation, paving the way for future optimizations and new functionality=2E > >In my experience, extension developers nearly always have to make some ch= anges to support each new PHP version, so I'm not sure why that would be a = reason to prevent improving the language=2E This is misrepresenting my concern=2E I understand that new versions require changes=2E=20 One of my issues is, is that so far I could not find a way to replicate ex= isting functionality with this patch applied=2E The RFC does not mention a BC break, nor does it have an entry for UPGRADI= NG=2EINTERNALS either=2E cheers Derick