PHP Classes

File: vendor/wp-cli/mustangostang-spyc/includes/functions.php

Recommend this page to a friend!
  Classes of Adeleye Ayodeji   Nolimitbuzz WP Theme   vendor/wp-cli/mustangostang-spyc/includes/functions.php   Download  
File: vendor/wp-cli/mustangostang-spyc/includes/functions.php
Role: Auxiliary script
Content type: text/plain
Description: Configuration script
Class: Nolimitbuzz WP Theme
WordPress theme to used as start of new themes
Author: By
Last change:
Date: 27 days ago
Size: 1,051 bytes
 

Contents

Class file image Download
<?php
/**
   * Spyc -- A Simple PHP YAML Class
   * @version 0.6.2
   * @author Vlad Andersen <[email protected]>
   * @author Chris Wanstrath <[email protected]>
   * @link https://github.com/mustangostang/spyc/
   * @copyright Copyright 2005-2006 Chris Wanstrath, 2006-2011 Vlad Andersen
   * @license http://www.opensource.org/licenses/mit-license.php MIT License
   * @package Spyc
   */

if (!function_exists('spyc_load')) {
 
/**
   * Parses YAML to array.
   * @param string $string YAML string.
   * @return array
   */
 
function spyc_load ($string) {
    return
Spyc::YAMLLoadString($string);
  }
}

if (!
function_exists('spyc_load_file')) {
 
/**
   * Parses YAML to array.
   * @param string $file Path to YAML file.
   * @return array
   */
 
function spyc_load_file ($file) {
    return
Spyc::YAMLLoad($file);
  }
}

if (!
function_exists('spyc_dump')) {
 
/**
   * Dumps array to YAML.
   * @param array $data Array.
   * @return string
   */
 
function spyc_dump ($data) {
    return
Spyc::YAMLDump($data, false, false, true);
  }
}