public static function Yaml::dump in Loft Data Grids 6.2
Same name and namespace in other branches
- 7.2 vendor/symfony/yaml/Yaml.php \Symfony\Component\Yaml\Yaml::dump()
Dumps a PHP array to a YAML string.
The dump method, when supplied with an array, will do its best to convert the array into friendly YAML.
Parameters
array $array PHP array:
int $inline The level where you switch to inline YAML:
int $indent The amount of spaces to use for indentation of nested nodes.:
bool $exceptionOnInvalidType true if an exception must be thrown on invalid types (a PHP resource or object), false otherwise:
bool $objectSupport true if object support is enabled, false otherwise:
Return value
string A YAML string representing the original PHP array
4 calls to Yaml::dump()
- YAMLExporter::compile in vendor/
aklump/ loft_data_grids/ src/ AKlump/ LoftDataGrids/ YAMLExporter.php - Build $this->output in prep for export/save
- YamlTest::testNegativeIndentationThrowsException in vendor/
symfony/ yaml/ Symfony/ Component/ Yaml/ Tests/ YamlTest.php - @expectedException \InvalidArgumentException @expectedExceptionMessage The indentation must be greater than zero
- YamlTest::testParseAndDump in vendor/
symfony/ yaml/ Symfony/ Component/ Yaml/ Tests/ YamlTest.php - YamlTest::testZeroIndentationThrowsException in vendor/
symfony/ yaml/ Symfony/ Component/ Yaml/ Tests/ YamlTest.php - @expectedException \InvalidArgumentException @expectedExceptionMessage The indentation must be greater than zero
File
- vendor/
symfony/ yaml/ Symfony/ Component/ Yaml/ Yaml.php, line 84
Class
- Yaml
- Yaml offers convenience methods to load and dump YAML.
Namespace
Symfony\Component\YamlCode
public static function dump($array, $inline = 2, $indent = 4, $exceptionOnInvalidType = false, $objectSupport = false) {
if ($indent < 1) {
throw new \InvalidArgumentException('The indentation must be greater than zero.');
}
$yaml = new Dumper();
$yaml
->setIndentation($indent);
return $yaml
->dump($array, $inline, 0, $exceptionOnInvalidType, $objectSupport);
}