On Mon, Jul 13, 2015 at 3:22 PM, Dean Eigenmann <dean.eigenm...@icloud.com> wrote:
> Ive just opened a new RFC https://wiki.php.net/rfc/jsonserializable regarding > Json to Object unserialization. > The approach with typecasting will not work, because the function json_decode doesn't have that information. Instead something like the JMS Serializer api is probably necessary: $user = json_decode($data, 'User'); I agree with Guilherme that we need a second interface for this, especially because changing the existing one would be a BC break.