Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:124778 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 AF7FB1A00B7 for ; Mon, 5 Aug 2024 16:50:30 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=php.net; s=mail; t=1722876731; bh=RTeq6ER5Zxp8lyPr0vCVzPIS8xTkT3E1pFrgBKy+CuY=; h=Date:Subject:To:Cc:References:From:In-Reply-To:From; b=aRtEFG2kKrLEBq3y8WNiduMXMxwl2NQ5vhaxPvTYhd2FAPTzWSknj4Ak1fRywbOut unbDtNML1NCNyylQAjgR+OZr94K+hB2sAsJ1jEZB3DVwf2AHFpxmc0iDOlO/rDSdcX J08Ym5Vt2fJermC2R01k6r3YKKswO+Vg4Ok63k0RF383lu/TBfX/94ntHwTVZ4c0ME dj8ktEYxxSKFGD/GPJbQt0tUMwwvYUD8wPsOzj4A9vIMtWGocV8IgYwllab9hMT+Yl thkRQTu5dA4bPl7zMU9iCkim2LCZtZmqF2+0X1S0GmXOv8r3PPvel33TSXEyDVMv7E yyfdtI2Vjy0ag== Received: from php-smtp4.php.net (localhost [127.0.0.1]) by php-smtp4.php.net (Postfix) with ESMTP id 6679A180080 for ; Mon, 5 Aug 2024 16:52:08 +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_NONE, SPF_PASS autolearn=no autolearn_force=no version=4.0.0 X-Spam-Virus: No X-Envelope-From: Received: from chrono.xqk7.com (chrono.xqk7.com [176.9.45.72]) (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 ; Mon, 5 Aug 2024 16:52:05 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=bastelstu.be; s=mail20171119; t=1722876623; bh=iAxNJHn0+Q/2BevzXTelWgVEAX062M7wDVWShRHvyHQ=; h=Message-ID:Date:MIME-Version:Subject:To:Cc:References:From: In-Reply-To:Content-Type:from:to:cc:subject:message-id; b=FQQZeK5iDgYPtwmwx6zj3BvgFguAiLFGLKeMrpI5HCKGvorKz9ipnm1fr5ddpJF8a K5kMBKO4GP1DRXc8w5DSJsB70oQ8Ilr6y8Vd7iVhtOiFrkjLxXz2fMuS/5mdz59BWC jmLa9kTGbIqegM8+URvP4wl1LZmvaAiRpKzOXaf09B7X8B/Rr0dS/ZLURrnTa4gLNm tSZDWV92c6mLiCHAhfozRw7g3YBE3+llLG309Jg6ObLcQ30V0tHfAyB3tluCQoQwMT hZ4fxr3ik19BGTtDoYTAticf228mbvmjKyrVAlpbOu0AZXQ/xyC51SK7a6s+LJlL4r 1pojoAc8z9z8A== Message-ID: Date: Mon, 5 Aug 2024 18:50:20 +0200 Precedence: bulk list-help: list-post: List-Id: internals.lists.php.net x-ms-reactions: disallow MIME-Version: 1.0 Subject: Re: [PHP-DEV] [RFC] [VOTE] Transform exit() from a language construct into a standard function To: Derick Rethans , "Christoph M. Becker" Cc: "Gina P. Banyard" , PHP internals References: <15bb76a0-cbd7-4145-b429-76d424755106@gmx.de> <1a8650d2-7eb5-d645-8132-e5522ad24637@php.net> Content-Language: en-US In-Reply-To: <1a8650d2-7eb5-d645-8132-e5522ad24637@php.net> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 8bit From: tim@bastelstu.be (=?UTF-8?Q?Tim_D=C3=BCsterhus?=) Hi On 8/5/24 13:04, Derick Rethans wrote: >> As userland PHP developer, I always regarded `exit` as a control flow >> instruction (quite similar to `break`), and as such I'm not really in >> favor of converting it to a proper function (especially since it is >> not, because the parantheses could be omitted). > > Xdebug uses exit for exactly that too. For control flow analysis. And I > also always have considered it to be a control flow instruction. > > I see no benefit in changing it to a function, especially because > there will never be a function "exit" from it, just only an "entry". > This breaks function execution symmetry (and causes issues with Xdebug > when I last tried to make it work with a development branch for this > RFC). This is false. The observers are perfectly capable of detecting that the `exit()` function returns / throws when observing `zend_observer_fcall_end_handler` as demonstrated by the following script: MyClass::__destruct Leaving the exit() function will be observed as indicated by ``. It also shows that any destructors will be called and it also shows the internal UnwindExit exception. Thus you are able to detect if `exit()` has successfully been called by observing an fcall_end and checking for `zend_is_unwind_exit(EG(exception))` to determine if the exception you're dealing with is the unwind exception. That way you will also correctly handle that `exit()` is not successful, e.g. when a non-stringable class is passed to it and a TypeError is thrown, because then the output will look something like this: Fatal error: Uncaught TypeError: exit(): Argument #1 ($code) must be of type string|int, MyClass given in php-src/test.php:11 Stack trace: #0 php-src/test.php(11): exit(Object(MyClass)) #1 php-src/test.php(14): a() #2 {main} thrown in php-src/test.php on line 11 MyClass::__destruct Best regards Tim Düsterhus