Skip to content

Instantly share code, notes, and snippets.

View bouiboui's full-sized avatar
🌍
cod3.net

Julien bouiboui

🌍
cod3.net
View GitHub Profile
@bouiboui
bouiboui / json2yamldesc.php
Created September 13, 2017 10:20
Creates a YAML description from a JSON payload (replace $data by your JSON payload)
<?php
function formatLine(array $items, $indent)
{
$spaces = '';
while ($indent--) {
$spaces .= ' ';
}
return PHP_EOL .
implode(PHP_EOL,