Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:121418 Return-Path: Delivered-To: mailing list internals@lists.php.net Received: (qmail 13426 invoked from network); 18 Oct 2023 18:20:15 -0000 Received: from unknown (HELO php-smtp4.php.net) (45.112.84.5) by pb1.pair.com with SMTP; 18 Oct 2023 18:20:15 -0000 Received: from php-smtp4.php.net (localhost [127.0.0.1]) by php-smtp4.php.net (Postfix) with ESMTP id 4A58F180503 for ; Wed, 18 Oct 2023 11:20:13 -0700 (PDT) X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on php-smtp4.php.net X-Spam-Level: X-Spam-Status: No, score=-2.1 required=5.0 tests=BAYES_00,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,SPF_HELO_PASS,SPF_PASS, T_SCC_BODY_TEXT_LINE autolearn=no autolearn_force=no version=3.4.2 X-Spam-ASN: AS20473 216.128.176.0/20 X-Spam-Virus: No X-Envelope-From: Received: from mail.online-presence.ca (online-presence.ca [216.128.176.244]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange ECDHE (P-256) server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by php-smtp4.php.net (Postfix) with ESMTPS for ; Wed, 18 Oct 2023 11:20:12 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=online-presence.ca; s=default; t=1697653212; bh=4sr9tBLTjWsbs3h5RF7Sb+bMfkPhys0OW5Q994QM/Mo=; h=Date:Subject:To:References:From:In-Reply-To:From; b=hVh/WDopivo9murUeJErZCYOYTInV2x0mWb9lkf0rIwjnczEnNVjErl77zL6udlg1 HkE0E5/loGyAymts++KiJPDNGRZuDx4yedlWEyIRSw3ETQCaXveSntGG9aoFUM7juP fMVhYrfHKifZaIFGykXajrUWtj4GRNzcGV7Y9HjjoyyfyfXkUf+g/PUAufFuTn9tbU QDicq9O01pF7iaex67umnFxrHWR5PhYJsZfWFK/l8C5ByoxYW6VzXC78jJN6+i/p47 LLd9wadUdrm5KDPLh8PQpSwjGzuHkASQ8VNq6hji7ZgPk8rOrAd8TEj5aM7GJ2Iyp3 vV0vEqs9lhiug== Received: from [10.0.0.211] (S01064075c3d865eb.ed.shawcable.net [70.74.109.64]) (Authenticated sender: lanre@online-presence.ca) by mail.online-presence.ca (Postfix) with ESMTPSA id 1C623105A7F for ; Wed, 18 Oct 2023 18:20:12 +0000 (UTC) Message-ID: <1a95bb7e-dec7-483d-8535-86401dfe9f4b@online-presence.ca> Date: Wed, 18 Oct 2023 12:20:10 -0600 MIME-Version: 1.0 User-Agent: Mozilla Thunderbird Content-Language: en-US To: internals@lists.php.net References: Organization: Online Presence In-Reply-To: Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Subject: Re: [PHP-DEV] Custom object equality From: lanre@online-presence.ca (Lanre Waju) I believe it's time to shift our focus away from backward compatibility (BC) concerns in major versions. In my opinion, genuine operator overloading is incomparable to the pseudo operator. I genuinely see the operator overloads as an invaluable addition to PHP 9 Lanre On 2023-10-18 6:50 a.m., someniatko wrote: > Hi internals, > > There is often a need to compare whether two objects are equal. For > example, a popular [brick/money](https://packagist.org/packages/brick/money) > library has a `Money` class, which has an `equals()` method. However, this > becomes tedious to implement such methods, when multiple nested objects are > involved. For instance, Money has an amount and a currency. > > There were already suggestions on the mailing list to allow "overloading" > existing `==` operator, and some suggestions went even as far as > overloading `<`, `>=` etc operators. However, overloading existing > operators may lead to a BC break between the PHP version which does support > the functionality, and which doesn't. It won't result in a BC break in case > it's an entirely new syntax, because a library or a project won't be able > to write code which overloads `==` in say PHP 8.4, but with code which > still works in PHP 8.3 - it will have to require PHP 8.4+. But if it is > implemented as a magic method, then `==` will work differently for 8.3 and > 8.4. > > I suggest thinking about introducing a new operator `~=`, which signifies > that custom equality is requested. In such a case, `==` will work as it > works now, and by default `~=` will work also like `==`, unless its > behavior is overwritten via a magic method. If a magic method is not > present in a class being compared, `~=` will compare two objects field by > field, but using `~=` comparison rather than `==` comparison, recursively. > > For instance, a Money object may consist of Amount and Currency. If two > Moneys are compared using `~=`, and Money does not implement a magic > method, Amount also doesn't implement it, but Currency does, then Amounts > are compared using `~=` which is equal to `==` comparison in this case, > but Currencies are compared using their custom comparison logic. > > This approach allows combining > - no BC break - `~=` is a new syntax which is unavailable in older PHP > versions > - explicitly showing an intent that objects are compared using a custom > comparison, rather than standard PHP one > - allow to skip writing boilerplate equals() methods which just forward > equals() to the nested objects > - standardize such comparisons on the language level > > Of course how exactly this operator looks may be changed, `~=` is just an > example. > > WDYT? > > Regards, > Illia / someniatko >