intofilm/property-builder

将数组扁平化并使其粗糙化以便序列化

1.0.2 2018-12-06 14:35 UTC

This package is not auto-updated.

Last update: 2024-09-26 01:58:41 UTC


README

编码和解码字符串数组到数组数组和相反的过程。

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