Class Inline
	
	
Inline implements a YAML parser/dumper for the YAML inline syntax.
	 
	
		Methods summary
		
		
			| 
				 public static
				mixed
				
				 | 
			#
			parse( string $value, boolean $exceptionOnInvalidType = false, boolean $objectSupport = false, boolean $objectForMap = false, array $references = array() )
				
Converts a YAML string to a PHP value. 
				
Converts a YAML string to a PHP value. Parameters
						$valuestring- $value A YAML string$exceptionOnInvalidTypeboolean- $exceptionOnInvalidType true if an exception must be thrown on invalid types (a
PHP resource or object), false otherwise$objectSupportboolean- $objectSupport true if object support is enabled, false otherwise$objectForMapboolean- $objectForMap true if maps should return a stdClass instead of array()$referencesarray- $references Mapping of variable names to valuesReturns
						mixed- A PHP value
 Throws | 
		
			| 
				 public static
				string
				
				 | 
			#
			dump( mixed $value, boolean $exceptionOnInvalidType = false, boolean $objectSupport = false )
				
Dumps a given PHP variable to a YAML string. 
				
Dumps a given PHP variable to a YAML string. Parameters
						$valuemixed- $value The PHP variable to convert$exceptionOnInvalidTypeboolean- $exceptionOnInvalidType true if an exception must be thrown on invalid types (a
PHP resource or object), false otherwise$objectSupportboolean- $objectSupport true if object support is enabled, false otherwiseReturns
						string- The YAML string representing the PHP value
 Throws | 
		
		Magic methods summary
		Constants summary
		
		
			| string | 
					REGEX_QUOTED_STRING
			 | '(?:"([^"\\\\]*+(?:\\\\.[^"\\\\]*+)*+)"|\'([^\']*+(?:\'\'[^\']*+)*+)\')' |  |