Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:105132 Return-Path: Delivered-To: mailing list internals@lists.php.net Received: (qmail 39394 invoked from network); 7 Apr 2019 15:59:11 -0000 Received: from unknown (HELO mail-it1-f195.google.com) (209.85.166.195) by pb1.pair.com with SMTP; 7 Apr 2019 15:59:11 -0000 Received: by mail-it1-f195.google.com with SMTP id q14so16655109itk.0 for ; Sun, 07 Apr 2019 05:55:34 -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=RcBM3N7rUL0j359mGKjfXeRwzIOX66lw85O8lBFk6lM=; b=R1LmqualhKTvK8IcPNrOt6s3d+fPjUhgt8OZgd4at1USIQ/4ESohhDdK2t84tfet4k E4tNJQh08cY+jvdn79hm5HpxI+bg4SbnRLFK7kK9dkKzvVm/uqC3yJ/hU7mZP+ONWsWt orj6EIXjfpiX9aHMKOy5bPV6wM/XR9X9MjQRxJxl6GSrQFJE3mka0odK/duxfnhv5bsh Y94Qykp+L/7AzqhdI9lhTiSrWWzhpSSbvwY/wLD1jDjLRNVvmUkGex12wBhTx4l3vfO/ lebXx+TT9hL+YrFS7y3CCXD8Y5sQHJB/W3Hf2W+6R/w+V+Yl9myFBrPys2k2QdyZv8xn K8SA== 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=RcBM3N7rUL0j359mGKjfXeRwzIOX66lw85O8lBFk6lM=; b=naqaXvxzCdVECfm4URCSNAoME8q9RLrMJOnfqIMw7ccyDLgXWhKRa0rQ4cSUqW8Em/ ADJvNjjdBKUmBsfmlfHZSnrnDHHkHxVg4pBkPkg1K0kbdGzWWgQXXZi+kNJlp6Drb0Ey dUUjjPXWgCzRwTM9hdAdgDZ6hb3bfyhAjHCur3oxVaHJMpWETBQaZfwQmjj2BJZT1zCu SWk5H9/wwgZcxhvJ3n5otwKR8nZaYFxK5E7HxhXlpcum1EbMEcIAgAe61rV2bvG/hBUR 7cI/ANK+1o/ivp/BN2OsX5BzVTpQUvsyWzT5PIrETVJzbEZXnWOPYMESFQASJ3SBRhpm EGyg== X-Gm-Message-State: APjAAAVK0eVZYZ9ORqy3Q0kD+kg3CFiroR4ezkGZxpje2IditAu1qFiL JA9xBPuK6zZKiKYpqtR0/7dxTRCW9Io69/E9SPk= X-Google-Smtp-Source: APXvYqzYJpPMQEmThVoZ3HKgwhuwMsXLOorNG4T0o3yibnh2FQX3I2126OVT5ml+4QugP3ksl9s04KAWjV2Jgcfy6/w= X-Received: by 2002:a24:4584:: with SMTP id c4mr17485924itd.163.1554641734420; Sun, 07 Apr 2019 05:55:34 -0700 (PDT) MIME-Version: 1.0 References: In-Reply-To: Date: Sun, 7 Apr 2019 14:55:21 +0200 Message-ID: To: Nikita Popov Cc: PHP internals Content-Type: multipart/alternative; boundary="000000000000554dc00585f03cae" Subject: Re: [PHP-DEV] Re: [VOTE] New custom object serialization mechanism From: benjamin.morel@gmail.com (Benjamin Morel) --000000000000554dc00585f03cae Content-Type: text/plain; charset="UTF-8" Thanks for bringing this new serialization method to PHP 7.4, Nikita! It would be nice if we could make this reusable beyond serialization. There > are two caveats that come to mind: > (...) > The __unserialize() method assumes an already constructed object on > which __unserialize() can be called, which we need due to the peculiar > limitations of serialization in PHP, but which is probably not very > convenient for other purposes, where the approach of __set_state() is more > useful. I actually started working on a replacement for var_export(), that makes use of __serialize() and __unserialize() methods when available, to reconstruct an object: https://github.com/brick/varexporter It turns out that it works pretty well, here is an example output for an object that implements these methods: (static function() { $class = new \ReflectionClass(\My\CustomClass::class); $object = $class->newInstanceWithoutConstructor(); $object->__unserialize([ 'foo' => 'Test', 'bar' => 1234 ]); return $object; })() And the good thing is, it can use these methods right now, without waiting for PHP 7.4. Feedback welcome! Ben On Thu, 21 Mar 2019 at 15:20, Nikita Popov wrote: > On Fri, Mar 1, 2019 at 4:08 PM Nikita Popov wrote: > > > Hi internals, > > > > I have opened voting on > > https://wiki.php.net/rfc/custom_object_serialization. The vote will be > > open until 2019-03-15. > > > > You can find the discussion thread for this proposal here: > > https://externals.io/message/103823 > > > > Regards, > > Nikita > > > > Vote closed a bit late here ... the RFC is accepted with 20 votes in favor > and 7 against. > > Regarding deprecation, I think I will target this at PHP 8. The new > mechanism will be there for the people who are running into the limits of > the existing one, but we probably don't need everybody to switch over right > this minute just yet. > > Regards, > Nikita > --000000000000554dc00585f03cae--