Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:105693 Return-Path: Delivered-To: mailing list internals@lists.php.net Received: (qmail 58150 invoked from network); 13 May 2019 21:50:41 -0000 Received: from unknown (HELO mail-io1-f67.google.com) (209.85.166.67) by pb1.pair.com with SMTP; 13 May 2019 21:50:41 -0000 Received: by mail-io1-f67.google.com with SMTP id m7so10933495ioa.6 for ; Mon, 13 May 2019 11:56:08 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=mime-version:references:in-reply-to:from:date:message-id:subject:to :cc; bh=TE/DLfrMLDUe3hZcigrf2kQKq4LNlWpFWMWAHdUkpK0=; b=U/BFdaL6xkpqeuuGs+fNXtomjZtIhkvACFjabMiHWy4JXnRy+6C1XN+hFcZ0ZsWQlh /HWxYaQeWWh5SdAzFrTcRoLYFVqbJJ0qSFWyIupH9kg4GXc1U+/fbakPqVgnkELekAMW SPdd6TAiQ0vGm0Y0ZwTTh1bu5Lt52tgw6HhS+BxiqL32TYqhqQOlBiU+WZ74C922GuXt p1ohj6696rRaB73Kyy4iVIf3zA79YB3NFAuB2HQpcRkz181TdXAA5YBFizvrAdk6Ptqm 6/M1XdXZuvWCg8fA2mNCQy1myZXUASLak03de9sgNEylcHDkiQOBYU/wTNTcYs5ME65Q temA== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:references:in-reply-to:from:date :message-id:subject:to:cc; bh=TE/DLfrMLDUe3hZcigrf2kQKq4LNlWpFWMWAHdUkpK0=; b=rGpqjgKlOvLpPcykuXj5Rrh0+q5V97n000RqLtxROe+3vL8C9OLrBvX8zEa+OMny3Z pR7PfRJdKj0WDDqs83wSvMykXuvHpXyMdNZCmL+ryBRmjRESweuFS/4RsQ52pLE4jxp0 CkW93apcLRL4hXutlfpK+7Q0RkF34KmPuzikXfriuN6yQnaYFRlUkC+Wnfo96Ec5myuD l8CjA7zMh3YXQvUIBuPN+MnXYvUdpq4/EOvIeZ/vtWOaxyISvmKs6nAGs0X9VLBCbeEv ML0epdPXzi1BaHq5wLoU912hja7VOUtvDTmvxGqEqRqxDQ4mxaTQPFPZrKCjz7hxji2U bIEQ== X-Gm-Message-State: APjAAAWkEdgxGYHj2J1uw43BPst+4UUapYVrnE3erj+YSEg1v1XMLBgh VYfKDhb1BTrFWz14zhFGLrwYDGqyKSMf6LeYVlw= X-Google-Smtp-Source: APXvYqxsArd9E5I3ofW21t9fuKetfKuKNwVM0/G7zPQxa4wzejm5zgblflqUlonfLPkPb5Vtk4Ag7CgWGfYxVQ5/xnw= X-Received: by 2002:a6b:da11:: with SMTP id x17mr18576251iob.78.1557773768282; Mon, 13 May 2019 11:56:08 -0700 (PDT) MIME-Version: 1.0 References: <1946899E-7EFC-4206-B26D-CD44838315A3@gmail.com> In-Reply-To: Date: Mon, 13 May 2019 20:55:54 +0200 Message-ID: To: Steven Wade Cc: PHP Internals List , Jessica Mauerhan Content-Type: multipart/alternative; boundary="00000000000019620e0588c97828" Subject: Re: [PHP-DEV] Re: Proposal for a RFC From: ocramius@gmail.com (Marco Pivetta) --00000000000019620e0588c97828 Content-Type: text/plain; charset="UTF-8" On Mon, 13 May 2019, 20:43 Steven Wade, wrote: > I don't think any of the discussion points mentioned above is resolved > > > I believe that most of the discussion points mentioned have been addressed > and resolved. Regarding the concern that an array cast is the only > operation capable of exposing object state, the same functionality can be > achieved with reflection - as demonstrated here: https://3v4l.org/Dh3PO. > That example misses the fact that `ReflectionProperty#getValue()` triggers property access guards, which is an extremely important detail for unset and typed properties. See https://3v4l.org/BtDs5 for an example of why `(array)` is vital in reflection/serialisation layers/libraries. > a heavy BC break on the `(array)` cast instead of introducing a clear > `SomeArrayableInterfaceType#toArray()` (to be explicitly called) is a no-go > from my end > > > As far as backwards compatibility breaks, I don't believe that's an issue > here. My proposal and subsequent conversations state that __toArray() is > only called if it is explicitly declared and implemented by a developer, > otherwise casting an class to an array behaves exactly as it does today. > The PHP documentation on magic methods > even specifically > mentions: "PHP reserves all function names starting with __ as magical" and > cautions "it is recommended that you do not use function names with __ in > PHP unless you want some documented magic functionality." So the language > itself reserves the double underscore methods for itself and future > versions. > See example above on the BC break: existing libraries would need to be adapted to throw eagerly (and reject interactions with) objects implementing `__toArray`. > as no clear value is added besides more language complexity, and more > mixed cast is encouraged. > > > I don't think supporting another magic method and giving developers > control over how an object they create is handled when cast to an array > adds complexity. It's on par with the already existing __toString() method. > Many libraries use this already to determine how their objects are handled > as strings, and to make it easy to convert between types without needing to > explicitly implement interfaces: such as Ramsey\Uuid > , and League\Uri > . > The added complexity comes from consumers: a `(string) $something` cast is problematic if `$something` is of doubtful type, while `$something->toString()` already restricts the possible types of that `$something`. The same accidental complexity comes with unsafe `(array)` casts. > The proposal to add a __toArray() isn't meant to add language complexity, > it's meant to add an optional helper for developers to simply converting > their objects to arrays, and doing so with magic methods isn't without > precedence and is more in line with PHP. > Helpers need to be helpful: this ain't, as explained above, since a clear type declaration is a more useful and introspectible way of handling type conversions, especially with the already excessively complex and bloated design of objects in the PHP language. Greets, Marco --00000000000019620e0588c97828--