intofilm/property-builder

Flattens and roughens arrays for serialisation

1.0.2 2018-12-06 14:35 UTC

This package is not auto-updated.

Last update: 2024-04-11 00:01:56 UTC


README

Encode and decode arrays of string to arrays of arrays and vice versa.

<?php
$builder = new \IntoFilm\Sdk\Common\Property\PropertyBuilder(); 
$builder->encode(['foo' => ['bar', 'baz']]);
// [
//    'foo.0' => 'bar',
//    'foo.1' => 'baz'
// ]