Mercurial > hg > isophonics-drupal-site
view vendor/consolidation/output-formatters/test.php @ 9:1fc0ff908d1f
Add another data file
author | Chris Cannam |
---|---|
date | Mon, 05 Feb 2018 12:34:32 +0000 |
parents | 4c8ae668cc8c |
children |
line wrap: on
line source
<?php use Consolidation\OutputFormatters\Transformations\WordWrapper; include 'vendor/autoload.php'; $wrapper = new WordWrapper(78); $data = [ 'name' => ['Name', ':', 'Rex', ], 'species' => ['Species', ':', 'dog', ], 'food' => ['Food', ':', 'kibble', ], 'legs' => ['Legs', ':', '4', ], 'description' => ['Description', ':', 'Rex is a very good dog, Brett. He likes kibble, and has four legs.', ], ]; $result = $wrapper->wrap($data); var_export($result);