PHPackages                             widi/json-encode - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. widi/json-encode

ActiveLibrary

widi/json-encode
================

A light weight deep json encoder which avoids recursive encoding.

4.0.1(4y ago)42.7k1MITPHPCI failing

Since Jun 19Pushed 4y agoCompare

[ Source](https://github.com/dirkwinkhaus/widi-jsonencode)[ Packagist](https://packagist.org/packages/widi/json-encode)[ RSS](/packages/widi-json-encode/feed)WikiDiscussions master Synced 6d ago

READMEChangelogDependencies (3)Versions (19)Used By (0)

Widi\\Json-Encode
=================

[](#widijson-encode)

A light weight deep json encoder which avoids recursive encoding.

Changelog
=========

[](#changelog)

3.0.0
=====

[](#300)

```
+ add generator support

```

Encoder
-------

[](#encoder)

Use the encoder like this:

```
public function encode($value): string;  // => json string

```

Encoder Factory
---------------

[](#encoder-factory)

The encoder Factory brings it all together. You may provide a dependency container to get strategies from it. It accepts container implementing "psr/container". Instance mapping will enable to look for class children of mapped classes. For instance if you extend DateTime it will not be recognized by the mapper if instance mapping ist not enabled. By default it is enabled. You can disable it to be faster at serialization.

```
$encoder = $encoderFactory->create(
    new GetIsHasMethodFilter(),
    new ArrayCache(true, false),
    new DefaultStrategy(false),
    [
        DateTime::class => [
            'class' => DateTimeStrategy::class,
            'options' => [
                'format' => 'd.m.Y'
            ]
        ],
        Collection::class => [
            'class' => DoctrineCollectionStrategy::class
        ]
    ],
    true,
    $dependencyContainer
);

```

Filter
------

[](#filter)

The filter figures out which methods are important to get information from. You may write your own by using the MethodFilterInterface. Included is a filter to call any is\*, get\*, has\* method of an object. There are two filters provided:

- GetIsHasMethodFilter
- GetIsHasMethodSnakeCaseFilter And you can easily define your own filter by using the filter interface.

Cache
-----

[](#cache)

The cache will keep information about filtered methods and optionally even property names. The package includes an array cache an a no-cache cache like a null cache. You may write your own by using the CacheInterface.

Strategy
--------

[](#strategy)

There is a default strategy and a strategy for handling datetime objects. You may add your own if necessary. Via class name and optional instance mapping the defined strategy will be found. Instance mapping can be disabled by the 5th argument of the encoder factory.

Usage
-----

[](#usage)

```
