Skip to content

PHP library with trait of ability to output all properties of class-exemplar at call json_encode()

License

Notifications You must be signed in to change notification settings

SbWereWolf/json-serialize-trait

Repository files navigation

JsonSerialize

Library with trait of ability to output all properties of class-exemplar at call json_encode()

How to install

composer require sbwerewolf/json-serialize-trait

How to use

To use JsonSerialize you should declare use statement into class

use \SbWereWolf\JsonSerializable\JsonSerializeTrait;

Example

class TraitTest implements JsonSerializable
{
/* Declaration of trait use */
    use \SbWereWolf\JsonSerializable\JsonSerializeTrait;
/* Declaration of class properties */
    private $privateProp = 'privateProp';
    protected $protectedProp = 'protected property value';
    public $publicProp = 'public class member';
}
/* Convert class-exemplar to JSON */
echo json_encode(new TraitTest(),JSON_PRETTY_PRINT);
/*
{
    "privateProp": "privateProp",
    "protectedProp": "protected property value",
    "publicProp": "public class member"
}
*/

Contacts

Volkhin Nikolay
e-mail ulfnew@gmail.com
phone +7-902-272-65-35
Telegram @sbwerewolf

Chat with me via messenger

About

PHP library with trait of ability to output all properties of class-exemplar at call json_encode()

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages