|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2006-03-17 23:18 UTC] omar@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Thu Oct 30 21:00:01 2025 UTC |
Description: ------------ A class with a private and/or protected members is serialized incorrectly. Reproduce code: --------------- class q { private $a; protected $b; public $c; } echo json_encode(new q); Expected result: ---------------- {"c":null} Actual result: -------------- {"c":null,}