Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:125825 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 0AF0F1A00BD for ; Mon, 21 Oct 2024 15:09:54 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=php.net; s=mail; t=1729523537; bh=dWo1JOcmsKB2jjiRrgYWQHrjvKc/SGfcnhjJvVVMD2M=; h=Date:To:From:Cc:Subject:In-Reply-To:References:From; b=TQTg0iqVb/eigHm3GGFNvFWUcLPziqocvljLX8yUs/a8EElvXQgFhFhC7LvovFf4D MewStTbCiCjoCoXYAjteMFhqHywJtu69GbtIjxgBIk6qRX8HovEhjg2GBHW5MQVuvs D7nz8fu5d6UpRmXh2YYgo8bU0hR3g39CO/VPuUbkgJpfaoOvKXQ7dBYg58LssLm/qf r2ESYYEMxPvT/SEysF4v13bqvMtHUaQ/yuNp7HtRBWxNTrM/91dmPtUx0UNggLTxlJ QFGOCBULnc33OY11Oib0grl5kcXNq5Y29+BYyIJY/WLJcGa7VIy8o/2+T6ZsLdnb4h eIskKXPpKJuBA== Received: from php-smtp4.php.net (localhost [127.0.0.1]) by php-smtp4.php.net (Postfix) with ESMTP id C6B4118007B for ; Mon, 21 Oct 2024 15:12:15 +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,RCVD_IN_MSPIKE_H4, RCVD_IN_MSPIKE_WL,SPF_HELO_PASS,SPF_PASS autolearn=no autolearn_force=no version=4.0.0 X-Spam-Virus: No X-Envelope-From: Received: from mail-40136.proton.ch (mail-40136.proton.ch [185.70.40.136]) (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, 21 Oct 2024 15:12:15 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gpb.moe; s=protonmail2; t=1729523389; x=1729782589; bh=dWo1JOcmsKB2jjiRrgYWQHrjvKc/SGfcnhjJvVVMD2M=; h=Date:To:From:Cc:Subject:Message-ID:In-Reply-To:References: Feedback-ID:From:To:Cc:Date:Subject:Reply-To:Feedback-ID: Message-ID:BIMI-Selector; b=Z4EzqCViCtGQDJwY8/shKs446MrZ0ehzHomc0IlHKrXKdQgYL3CvBf4iKJX/CG9A9 XcEy9cVsW0bMqDK9EKJATJThuzTU8NN8z4N8+ajTt9S9qZbS2cWwi4F5ke+opn4Ibo Opl/pslBjl6hqQoHiduxvF8Hl1u0n9oZ/0wtMI6brrdUYN5LJzAg1hvVrlDLtupSmc pWl+DGd/RAGX+U2gf2JY06M1i/lCR+pefFi7DkBMcCRJTSvNltDmRsop/NDitLdXEk rH10ubPMJXKMVWqcXO0CPc2fDto+M3T9aNg8X5bYY2SyKggMKvhn5IA1Gc8Mq+//Op ajBU9biRJwpYA== Date: Mon, 21 Oct 2024 15:09:45 +0000 To: Ilija Tovilo Cc: PHP internals Subject: Re: [PHP-DEV] [RFC] Change behaviour of array sort functions to return a copy of the sorted array Message-ID: In-Reply-To: References: Feedback-ID: 96993444:user:proton X-Pm-Message-ID: 75b2996b9d1326a05fbd6ff99acd7c78f84c085f 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: internals@gpb.moe ("Gina P. Banyard") On Monday, 21 October 2024 at 14:29, Ilija Tovilo = wrote: > Hi Gina >=20 > On Mon, Oct 21, 2024 at 3:21=E2=80=AFPM Gina P. Banyard internals@gpb.moe= wrote: >=20 > > On Sunday, 20 October 2024 at 18:42, Gina P. Banyard internals@gpb.moe = wrote: > >=20 > > > https://wiki.php.net/rfc/array-sort-return-array > >=20 > > For an example, I'm going to pull out my solution to day 1 of the 2022 = advents of code: > >=20 > > https://github.com/Girgias/advent-of-code/blob/19283e1f5ef503c8a4478e58= aaa57ff2fb7164c7/2022/01/puzzle.php#L25 > >=20 > > However, if the sort functions would return a useful value instead of `= true` I could chain it together completely as follows: > >=20 > > $top3 =3D array_slice( > > rsort( > > array_map( > > 'array_sum', > > array_map( > > fn($v) =3D> explode("\n", $v), > > explode( > > "\n\n", > > $input > > ) > > ) > > ) > > ), > > 0, > > length: 3 > > ); >=20 >=20 > Note that your example would still warn after this RFC, which is > likely enough to deter people from writing code like this. >=20 > https://3v4l.org/mRuoK There is a very simple fix, which is to add the /** @prefer-ref $array */ d= oc comment to the stub of the relevant functions. Something that array_multisort() already does. But thanks for reminding me how crap PHP references are :D I'll amend the RFC soon to include this change as part of the proposal. Best regards, Gina P. Banyard