File "yaml_to_array.php"

Full path: /home/argothem/www/organecyberpresse/plugins/auto/yaml/v3.1.2/inc/yaml_to_array.php
File size: 268 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

if (!defined('_ECRIRE_INC_VERSION')) {
	return;
}

function inc_yaml_to_array_dist($u) {
	include_spip('inc/yaml');
	if (is_array($yaml = yaml_decode($u))) {
		$tableau = $yaml;
	} elseif (is_object($yaml)) {
		$tableau = (array) $yaml;
	}

	return $tableau;
}