You are here

public static function Escaper::escapeWithDoubleQuotes in Loft Data Grids 6.2

Same name and namespace in other branches
  1. 7.2 vendor/symfony/yaml/Escaper.php \Symfony\Component\Yaml\Escaper::escapeWithDoubleQuotes()

Escapes and surrounds a PHP value with double quotes.

Parameters

string $value A PHP value:

Return value

string The quoted, escaped string

1 call to Escaper::escapeWithDoubleQuotes()
Inline::dump in vendor/symfony/yaml/Symfony/Component/Yaml/Inline.php
Dumps a given PHP variable to a YAML string.

File

vendor/symfony/yaml/Symfony/Component/Yaml/Escaper.php, line 61

Class

Escaper
Escaper encapsulates escaping rules for single and double-quoted YAML strings.

Namespace

Symfony\Component\Yaml

Code

public static function escapeWithDoubleQuotes($value) {
  return sprintf('"%s"', str_replace(self::$escapees, self::$escaped, $value));
}