public static function Escaper::requiresDoubleQuoting in Loft Data Grids 6.2
Same name and namespace in other branches
- 7.2 vendor/symfony/yaml/Escaper.php \Symfony\Component\Yaml\Escaper::requiresDoubleQuoting()
Determines if a PHP value would require double quoting in YAML.
Parameters
string $value A PHP value:
Return value
bool True if the value would require double quotes.
1 call to Escaper::requiresDoubleQuoting()
- 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 49
Class
- Escaper
- Escaper encapsulates escaping rules for single and double-quoted YAML strings.
Namespace
Symfony\Component\YamlCode
public static function requiresDoubleQuoting($value) {
return preg_match('/' . self::REGEX_CHARACTER_TO_ESCAPE . '/u', $value);
}