You are here

public static function Escaper::requiresSingleQuoting in Lockr 7.3

Determines if a PHP value would require single quoting in YAML.

Parameters

string $value A PHP value:

Return value

bool True if the value would require single quotes

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

File

vendor/symfony/yaml/Escaper.php, line 77

Class

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

Namespace

Symfony\Component\Yaml

Code

public static function requiresSingleQuoting($value) {

  // Determines if a PHP value is entirely composed of a value that would
  // require single quoting in YAML.
  if (\in_array(strtolower($value), [
    'null',
    '~',
    'true',
    'false',
    'y',
    'n',
    'yes',
    'no',
    'on',
    'off',
  ])) {
    return true;
  }

  // Determines if the PHP value contains any single characters that would
  // cause it to require single quoting in YAML.
  return 0 < preg_match('/[ \\s \' " \\: \\{ \\} \\[ \\] , & \\* \\# \\?] | \\A[ \\- ? | < > = ! % @ ` ]/x', $value);
}