Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:127007 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 627DA1A00BC for ; Tue, 1 Apr 2025 11:36:26 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=php.net; s=mail; t=1743507239; bh=P7h8AucCyKBy+lpDuVsf6vZ22DYtedxpd6117F8dQeQ=; h=Date:Subject:To:References:From:In-Reply-To:From; b=l7KNQgA2rUA2LqHeTCzx9augewPniBvDmO4hpQVEgB7HZ1iPGWkYPVfgNhRem2/GZ PSOJJrbZ1brrO+z6JfQ3aS1QoSsuQOwt6eKcxdB31pnLyWZgsD8ErQpU4PlRF4LKln VJ4FJOP0fu9l9fnEeucyFRGil3aFTxg0U3iRw/o4K5u0JOSF2HpUayKrKrgDoUrGfB QVj3DJ6lUUmUodwWCnpzKY9sVOm6DMipgdQ9qnyNaYrC8ggHlmpp1v3GvGmEgz6PYx srr7d1+BwYyvJQJRe2SS0p5WABUNMC0SgHL+iliSt0uZJ6GlYDMsKST18Dkr3YTDno TNPSVF9nx+5Xg== Received: from php-smtp4.php.net (localhost [127.0.0.1]) by php-smtp4.php.net (Postfix) with ESMTP id A435C180081 for ; Tue, 1 Apr 2025 11:33:56 +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 megan.smtp.mailx.hosts.net.nz (megan.smtp.mailx.hosts.net.nz [43.245.52.196]) (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 11:33:56 +0000 (UTC) Received: from 222-153-169-88-fibre.sparkbb.co.nz ([222.153.169.88] helo=[192.168.1.67]) by megan.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 1tzZul-00FDJX-22 for internals@lists.php.net; Wed, 02 Apr 2025 00:36:19 +1300 Message-ID: <53cafa25-a2b3-4039-8c5e-777b3012c586@varteg.nz> Date: Wed, 2 Apr 2025 00:36:11 +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: <7ec4933d-0b9e-4c5a-bdb3-6a1a93c5ca62@varteg.nz> <87293ebfb73c8842e9aea2192df687e2@bastelstu.be> Content-Language: en-GB In-Reply-To: Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 8bit X-Hosts-DKIM-Check: none From: weedpacket@varteg.nz (Morgan) On 2025-04-02 00:14, Ilija Tovilo wrote: > On Tue, Apr 1, 2025 at 12:40 PM Tim Düsterhus wrote: >> >> If you are at the point where you need mutually recursive closures, >> perhaps you should just use named functions / an anonymous class. I >> don't find it useful to “optimize DX” for that case, since >> self-recursive Closures are already somewhat questionable / rarely used >> (though I think I've used that myself a handful of times in the past). > > I don't disagree. To reveal my ulterior motive: References [1]. > I don't disagree either - though maybe I tend to write more functionally than is maybe idiomatic for PHP, so I'm already more comfortable with both passing closures around and recursion. At the moment though, use-by-reference is the mechanism with the smallest developer footprint. Just pay attention to what you're storing in your local variables (you don't have so many you're losing track, right?) and you won't get bitten. As for other uses ... I can't find the last time I used & in foreach() to modify an array's elements in-place (though I'm sure there are some somewhere), I don't think I've ever created a function with a by-reference parameter, and I can find precisely one instance where I used it to abbreviate a long-winded multidimensional array lookup that I would have otherwise had to write several times (including an assignment).