The Simple PHP YAML Class.

This class can be used to read a YAML file and convert its contents into a PHP array. It currently supports a very limited subsection of the YAML spec.

Usage:

  $Spyc  = new Spyc;
  $array = $Spyc->load($file);

or:

  $array = Spyc::YAMLLoad($file);

or:

  $array = spyc_load_file($file);
package Spyc

 Methods

Dump YAML from PHP array statically

YAMLDump(array $array, int $indent, int $wordwrap) : string
Static

The dump method, when supplied with an array, will do its best to convert the array into friendly YAML. Pretty simple. Feel free to save the returned string as nothing.yaml and pass it around.

Oh, and you can decide how big the indent is and what the wordwrap for folding is. Pretty cool -- just pass in 'false' for either if you want to use the default.

Indent's default is 2 spaces, wordwrap's default is 40 characters. And you can turn off wordwrap by passing in 0.

access public

Parameters

$array

array

PHP array

$indent

int

Pass in false to use the default, which is 2

$wordwrap

int

Pass in 0 for no wordwrap, false for default (40)

Returns

string

Load YAML into a PHP array statically

YAMLLoad(string $input) : array
Static

The load method, when supplied with a YAML stream (string or file), will do its best to convert YAML in a file into a PHP array. Pretty simple. Usage:

  $array = Spyc::YAMLLoad('lucky.yaml');
  print_r($array);
 
access public

Parameters

$input

string

Path of YAML file or string containing YAML

Returns

array

Load a string of YAML into a PHP array statically

YAMLLoadString(string $input) : array
Static

The load method, when supplied with a YAML string, will do its best to convert YAML in a string into a PHP array. Pretty simple.

Note: use this function if you don't want files from the file system loaded and processed as YAML. This is of interest to people concerned about security whose input is from a string.

Usage:

  $array = Spyc::YAMLLoadString("---\n0: hello world\n");
  print_r($array);
 
access public

Parameters

$input

string

String containing YAML

Returns

array

Dump PHP array to YAML

dump(array $array, int $indent, int $wordwrap) : string

The dump method, when supplied with an array, will do its best to convert the array into friendly YAML. Pretty simple. Feel free to save the returned string as tasteful.yaml and pass it around.

Oh, and you can decide how big the indent is and what the wordwrap for folding is. Pretty cool -- just pass in 'false' for either if you want to use the default.

Indent's default is 2 spaces, wordwrap's default is 40 characters. And you can turn off wordwrap by passing in 0.

access public

Parameters

$array

array

PHP array

$indent

int

Pass in false to use the default, which is 2

$wordwrap

int

Pass in 0 for no wordwrap, false for default (40)

Returns

string

Load a valid YAML string to Spyc.

load(string $input) : array

Parameters

$input

string

Returns

array

Load a valid YAML file to Spyc.

loadFile(string $file) : array

Parameters

$file

string

Returns

array

revertLiteralPlaceHolder()

revertLiteralPlaceHolder($lineArray, $literalBlock) 

Parameters

$lineArray

$literalBlock

__load()

__load($input) 

Parameters

$input

__loadString()

__loadString($input) 

Parameters

$input

Folds a string of text, if necessary

_doFolding($value, $indent) : string
access private

Parameters

$value

The string you wish to fold

$indent

Returns

string

Creates a literal block for dumping

_doLiteralBlock($value, $indent) : string
access private

Parameters

$value

$indent

int The value of the indent

Returns

string

Returns YAML from a key and a value

_dumpNode($key, $value, $indent, $previous_key, $first_key, $source_array) : string
access private

Parameters

$key

The name of the key

$value

The value of the item

$indent

The indent of the current node

$previous_key

$first_key

$source_array

Returns

string

Used in inlines to check for more inlines or quoted strings

_inlineEscape($inline) : array
access private

Parameters

$inline

Returns

array

Parses YAML code and returns an array for a node

_parseLine(string $line) : array
access private

Parameters

$line

string

A line from the YAML file

Returns

array

Finds the type of the passed value, returns the value as the new type.

_toType(string $value) : mixed
access private

Parameters

$value

string

Returns

mixed

Attempts to convert a key / value array item to YAML

_yamlize($key, $value, $indent, $previous_key, $first_key, $source_array) : string
access private

Parameters

$key

The name of the key

$value

The value of the item

$indent

The indent of the current node

$previous_key

$first_key

$source_array

Returns

string

Attempts to convert an array to YAML

_yamlizeArray($array, $indent) : string
access private

Parameters

$array

The array you want to convert

$indent

The indent of the current level

Returns

string

addArray()

addArray($incoming_data, $incoming_indent) 

Parameters

$incoming_data

$incoming_indent

addArrayInline()

addArrayInline($array, $indent) 

Parameters

$array

$indent

addGroup()

addGroup($line, $group) 

Parameters

$line

$group

addLiteralLine()

addLiteralLine($literalBlock, $line, $literalBlockStyle, $indent) 

Parameters

$literalBlock

$line

$literalBlockStyle

$indent

clearBiggerPathValues()

clearBiggerPathValues($indent) 

Parameters

$indent

getParentPathByIndent()

getParentPathByIndent($indent) 

Parameters

$indent

greedilyNeedNextLine()

greedilyNeedNextLine($line) 
Static

Parameters

$line

isArrayElement()

isArrayElement($line) 

Parameters

$line

isComment()

isComment($line) 
Static

Parameters

$line

isEmpty()

isEmpty($line) 
Static

Parameters

$line

isHashElement()

isHashElement($line) 

Parameters

$line

isLiteral()

isLiteral($line) 

Parameters

$line

isPlainArray()

isPlainArray($line) 

Parameters

$line

literalBlockContinues()

literalBlockContinues($line, $lineIndent) 

Parameters

$line

$lineIndent

loadFromSource()

loadFromSource($input) 

Parameters

$input

loadFromString()

loadFromString($input) 

Parameters

$input

loadWithSource()

loadWithSource($Source) 

Parameters

$Source

nodeContainsGroup()

nodeContainsGroup($line) 

Parameters

$line

referenceContentsByAlias()

referenceContentsByAlias($alias) 

Parameters

$alias

returnArrayElement()

returnArrayElement($line) 

Parameters

$line

returnKeyValuePair()

returnKeyValuePair($line) 

Parameters

$line

returnMappedSequence()

returnMappedSequence($line) 

Parameters

$line

returnMappedValue()

returnMappedValue($line) 

Parameters

$line

returnPlainArray()

returnPlainArray($line) 

Parameters

$line

startsLiteralBlock()

startsLiteralBlock($line) 
Static

Parameters

$line

startsMappedSequence()

startsMappedSequence($line) 

Parameters

$line

startsMappedValue()

startsMappedValue($line) 

Parameters

$line

stripGroup()

stripGroup($line, $group) 

Parameters

$line

$group

stripIndent()

stripIndent($line, $indent) 
Static

Parameters

$line

$indent

unquote()

unquote($value) 
Static

Parameters

$value

 Properties

 

$_nodeId 
 

$setting_dump_force_quotes : bool

False by default.

 

$setting_use_syck_is_possible : bool

False by default.

 

$LiteralPlaceHolder 
 

$SavedGroups 
 

$_containsGroupAlias 
 

$_containsGroupAnchor 
 

$_dumpIndent 
 

$_dumpWordWrap 
 

$delayedPath : array
 

$indent 
 

$path 
 

$result 

 Constants

 

REMPTY

REMPTY