Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:125830 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 104891A00BD for ; Mon, 21 Oct 2024 23:43:56 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=php.net; s=mail; t=1729554379; bh=yDsH5tx8cEgr+gQmsDLPxPDmm1aVNH3N9q4vg8Rua3M=; h=Date:Subject:To:Cc:References:From:In-Reply-To:From; b=MqGlgIigur0zuO5RjUFdel9+fEwBjqcJKsuo9gWW2atjf3iAZI18kNdWlEbL75Ja2 x424LIAF9uIl9ki/K+rbTN+5nttAVEkVXiNbdwc1feqIlTlX7ITRfsmvaSWK12OfvN JYeOcc1+cATRgPpyS3eXBb0E7N0khrGrkVEvDpeeZnc/3Js3/NuQObJEyrQXbJFwwc PifPG3ii4/acm732RVd4nTkSucJDgLV7EUqnFWP8Q/GG8t1Xwzim/B5NF+p4YG6vJs nGIxRtSUYvloQf8iMGAYn50DNFMqrRCNnxQo5yNUD3pMgZ8JiXdYRxhNvVtIK6rTd/ OfKWLg1KO6xEQ== Received: from php-smtp4.php.net (localhost [127.0.0.1]) by php-smtp4.php.net (Postfix) with ESMTP id 6334E18004F for ; Mon, 21 Oct 2024 23:46:17 +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 chuck.smtp.mailx.hosts.net.nz (chuck.smtp.mailx.hosts.net.nz [43.245.52.157]) (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 ; Mon, 21 Oct 2024 23:46:15 +0000 (UTC) Received: from 125-239-198-3-fibre.sparkbb.co.nz ([125.239.198.3] helo=[192.168.1.67]) by chuck.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 1t323u-00Cqfm-04; Tue, 22 Oct 2024 12:43:46 +1300 Message-ID: Date: Tue, 22 Oct 2024 12:43:37 +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] [RFC] Change behaviour of array sort functions to return a copy of the sorted array To: mickmackusa Cc: internals References: <19897c07-ebc8-49e8-9825-30a3fcc00a3e@varteg.nz> 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 2024-10-22 00:17, mickmackusa wrote: > On Mon, 21 Oct 2024, 18:09 Morgan, > wrote: > > You can’t use: >         $sorted_datasets = array_map(sort(...), $datasets); > You want >         $sorted_datasets = $datasets; >         array_walk($sorted_datasets, sort(...)); > > > A warning: no one should ever use array_walk($sorted_datasets, > sort(...)); as general-use script. > > When sorting a 2d array in this fashion (only non-fatally executed with > numeric first level keys https://3v4l.org/HaU42 HaU42>), the first level keys will be used as the sorting flag while > sorting each row.  This means that different rows may have different > sorting flags applied -- effectively corrupting the result. > https://3v4l.org/FeIpj -- notice how rows with > keys 2, 5, and 10 are sorted as strings. > > Mick > Right, but the issue was that array_walk() is the only callback-parameterised array_* function which is even _compatible_ with sort(). As you point out, even then it's problematic.