<?php class MyClass { private $hi = 'Hi'; protected $hello = 'Hello'; public $goodday = 'Goodday'; } $thing = new MyClass(); print json_encode($thing); // {"goodday":"Goodday"} print json_encode((array) $thing); // {"\u0000MyClass\u0000hi":"Hi","\u0000*\u0000hello":"Hello","goodday":"Goodday"}
You have javascript disabled. You will not be able to edit any code.