|   | 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 Group All rights reserved. | Last updated: Fri Oct 31 04: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,}