Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:105622 Return-Path: Delivered-To: mailing list internals@lists.php.net Received: (qmail 86205 invoked from network); 7 May 2019 15:54:41 -0000 Received: from unknown (HELO mail-it1-f179.google.com) (209.85.166.179) by pb1.pair.com with SMTP; 7 May 2019 15:54:41 -0000 Received: by mail-it1-f179.google.com with SMTP id q14so26239452itk.0 for ; Tue, 07 May 2019 05:58:35 -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=+bRoSear8LsD8fISXLUFmyhDy/TESR73VxC4JsR/Rqg=; b=UGc1TK3Q2GRGjKwjrqHAvsOvvUzIOtQrQlDpxAXR8MG8HnYHLIWgEgpDEZdypRbxA0 J8gNUyCPaBBWKBQAda27RFP7pyCNgcyN+Tv406O7G8hfTVbm4+ybbWoTm0YbBTalQDUp IsbGbG4wzsVLm61pGLIrcfn0iPiZqqXm3bFdScpwxl2Hs0zbkf0gNYqM/7I6Q4XlO3RY hldzBuF6PzoDinccFv1Ik8WvgW0xIoPGmFpYqFf21pAu8Z4r5go/UAQagHxGrsrqablP FN1SnkniXI68pOLyvgqeDSAPt7r+rMWmvn7iGINP+iNt4ynfIGB5AhU0BLebD6t6MkX+ j5FA== 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=+bRoSear8LsD8fISXLUFmyhDy/TESR73VxC4JsR/Rqg=; b=NueqTrN/6aerueZDmr0qVc126lHSzRJFKvdsqN15kpc92Zby/7bK0Fq5kgYEOEag/t T8fLRaKDtJXinAVMd4mZxhCJOdGilmvmIQN8GT3koAu3ED0HtNd6yA12RAeIbypj2oL6 vg9oCiX1mqqcJ7ApNUugS+Oe1yESD6y/0cxU1QuC22poFykDQ/V9uPPJ3AozmNI9xugu 8dDYEvNp+zNjnt+0IzQgXpiQFe1mfPQBeXV7DnaUV8U7+fA5yC++YrbY+KTPifcMryYv tRGNLA+H6nZ9VhfUIq3vddfcJdz1mhU3IFpKyBbf5SbKp2koXWWlS+f+VOURg7TyYv3c ydZQ== X-Gm-Message-State: APjAAAVjK0v+PoC+jFWy8q4or0CtGicZu5nXymfTTQEMoDwQBS58isSN 5i17f38/nnwGBgEtk5nG/9jB/rwlPEK9FNjj5w4= X-Google-Smtp-Source: APXvYqwYZCJE+Fx73QEh58L78NA0z9a0mQH2cp+54eebaOD7EjpHrZ77uVW1oLE2FQM+2HFRPPtt0Me/NGdTjDwJPU4= X-Received: by 2002:a24:f584:: with SMTP id k126mr3762783ith.31.1557233914739; Tue, 07 May 2019 05:58:34 -0700 (PDT) MIME-Version: 1.0 References: <384B1934-FC7A-414D-BC31-E5521B2F0E17@benramsey.com> <1BC31028-45B2-4CE6-B85C-EDFD3484DA98@gmail.com> In-Reply-To: <1BC31028-45B2-4CE6-B85C-EDFD3484DA98@gmail.com> Date: Tue, 7 May 2019 14:58:20 +0200 Message-ID: To: Steven Wade Cc: Ben Ramsey , PHP Internals List Content-Type: multipart/alternative; boundary="00000000000052031305884bc6f6" Subject: Re: [PHP-DEV] Proposal for a RFC From: ocramius@gmail.com (Marco Pivetta) --00000000000052031305884bc6f6 Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable Hey Steven, On Tue, 7 May 2019, 14:25 Steven Wade, wrote: > > I=E2=80=99m not against the proposal. I=E2=80=99m mainly asking if ther= e are other ways > in the language today to accomplish similar things. I would prefer to see > interfaces used over more magic methods (something like ArraySerializable= ). > > A Twitter user pointed out that 7.4 is adding two new magic methods < > https://wiki.php.net/rfc/custom_object_serialization> - __serialize() and > __unserialize(). So adding more magic methods to PHP isn't unprecedented. > > On the same note, casting is already magical, so controling the > implementation via a magic method is more in line with current > functionality. > With your current proposal so far, I'd simply have to throw an exception: `if (method_exists($object, '__toArray')) { throw UnsupportedObject::from($object); }` The alternative is to expand the reflection API with an array cast operation in there, and then migrate existing userland usages to that to retain BC. In addition to that, as someone that used to write a lot of `__toString()` (and now doesn't do that anymore), a clear API and interfaced (non-magic) `toArray()` is more powerful and useful. Greets, Marco --00000000000052031305884bc6f6--