Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:126991 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 A2FB31A00BC for ; Tue, 1 Apr 2025 00:18:13 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=php.net; s=mail; t=1743466546; bh=BFTadrIVZ7F2HB9XiWyoGZMSPQ1RVoVkThop+LPKkgU=; h=Date:Subject:To:References:From:In-Reply-To:From; b=GaecvgM9KkfRj0SQjaYuE0NdzluWMr6iP32osGI+v4urfbQskwiKFRzOEypJvjqUY +D+p6nqR4MfoD275B6Yee8QNmGhrmk5fWzLdpdir2LC3i8zZVdBufZEhTKVFuQSQ5t yNDj6jPk28JpKTe8Di9vH8lXi9wJDdZ+TdS1+pFGOpMku3YWn1l6fpKs+mwtYc/c63 Tg0pNIM2HyN7iuFaG7Q0dzZLHdevuqaAsWuRtfvE0JHXLEKkhbCFVnGvv2bfEdcvPT 8Aeym5ndM3AzYcam3XSLt3Yq7CipJdN58Q86eT/0V5BYwAwgL9fmguVDFwWyM99x1B YVbrzKi0k3p/A== Received: from php-smtp4.php.net (localhost [127.0.0.1]) by php-smtp4.php.net (Postfix) with ESMTP id AEE5618005B for ; Tue, 1 Apr 2025 00:15:45 +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.8 required=5.0 tests=BAYES_50,DMARC_MISSING, SPF_HELO_NONE,SPF_PASS autolearn=no autolearn_force=no version=4.0.0 X-Spam-Virus: No X-Envelope-From: Received: from alcott.smtp.mailx.hosts.net.nz (alcott.smtp.mailx.hosts.net.nz [43.245.52.158]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange ECDHE (prime256v1) server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by php-smtp4.php.net (Postfix) with ESMTPS for ; Tue, 1 Apr 2025 00:15:45 +0000 (UTC) Received: from 222-153-169-88-fibre.sparkbb.co.nz ([222.153.169.88] helo=[192.168.1.67]) by alcott.smtp.mailx.hosts.net.nz with esmtpsa authed as varteg.nz (TLS1.3:ECDHE_X25519__RSA_PSS_RSAE_SHA256__AES_128_GCM:128) (Exim 4.96) (envelope-from ) id 1tzPKU-002dcD-0x for internals@lists.php.net; Tue, 01 Apr 2025 13:18:10 +1300 Message-ID: <7ec4933d-0b9e-4c5a-bdb3-6a1a93c5ca62@varteg.nz> Date: Tue, 1 Apr 2025 13:18:05 +1300 Precedence: bulk list-help: list-post: List-Id: internals.lists.php.net x-ms-reactions: disallow MIME-Version: 1.0 User-Agent: Mozilla Thunderbird Subject: Re: [PHP-DEV] Closure::getCurrent() for recursion To: internals@lists.php.net References: Content-Language: en-GB In-Reply-To: Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-Hosts-DKIM-Check: none From: weedpacket@varteg.nz (Morgan) On 2025-04-01 09:38, Ilija Tovilo wrote: > Hi everyone > > > This is essentially already possible through a by-reference capture. > > $fibonacci = function (int $n) use (&$fibonacci) { ... }; > > This cannot be a by-value capture because by the time the closure is > created and variables are bound, $fibonacci is not assigned yet. The > downside of by-reference capturing is that if $fibonacci is > accidentally reassigned, the reference within the closure is also > changed. > > However, I consider a language change largely unnecessary. Instead, > this may be solved with a very simple static function: > Closure::getCurrent(). > How about mutual recursion, where two of these functions call each other? Currently one can write $left = function(array $a) use(&$second) { ... }; $second = function(array $a) use($first) { ... }; (The second can capture the first by value, but the first still needs to capture the second by reference.) With Closure::getCurrent(), how does either function reference the other?