You are here

public static function Escaper::escapeWithSingleQuotes in Currency 7.2

Escapes and surrounds a PHP value with single quotes.

Parameters

string $value A PHP value:

Return value

string The quoted, escaped string

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

File

currency/vendor/symfony/yaml/Escaper.php, line 93

Class

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

Namespace

Symfony\Component\Yaml

Code

public static function escapeWithSingleQuotes($value) {
  return sprintf("'%s'", str_replace('\'', '\'\'', $value));
}