* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\Yaml; /** * Escaper encapsulates escaping rules for single and double-quoted * YAML strings. * * @author Matthew Lewinski * * @internal */ class Escaper { // Characters that would cause a dumped string to require double quoting. public const REGEX_CHARACTER_TO_ESCAPE = "[\\x00-\\x1f]|\x7f|\xc2\x85|\xc2\xa0|\xe2\x80\xa8|\xe2\x80\xa9"; // Mapping arrays for escaping a double quoted string. The backslash is // first to ensure proper escaping because str_replace operates iteratively // on the input arrays. This ordering of the characters avoids the use of strtr, // which performs more slowly. private const ESCAPEES = ['\\', '\\\\', '\\"', '"', "\x00", "\x01", "\x02", "\x03", "\x04", "\x05", "\x06", "\x07", "\x08", "\x09", "\x0a", "\x0b", "\x0c", "\x0d", "\x0e", "\x0f", "\x10", "\x11", "\x12", "\x13", "\x14", "\x15", "\x16", "\x17", "\x18", "\x19", "\x1a", "\x1b", "\x1c", "\x1d", "\x1e", "\x1f", "\x7f", "\xc2\x85", "\xc2\xa0", "\xe2\x80\xa8", "\xe2\x80\xa9", ]; private const ESCAPED = ['\\\\', '\\"', '\\\\', '\\"', '\\0', '\\x01', '\\x02', '\\x03', '\\x04', '\\x05', '\\x06', '\\a', '\\b', '\\t', '\\n', '\\v', '\\f', '\\r', '\\x0e', '\\x0f', '\\x10', '\\x11', '\\x12', '\\x13', '\\x14', '\\x15', '\\x16', '\\x17', '\\x18', '\\x19', '\\x1a', '\\e', '\\x1c', '\\x1d', '\\x1e', '\\x1f', '\\x7f', '\\N', '\\_', '\\L', '\\P', ]; /** * Determines if a PHP value would require double quoting in YAML. * * @param string $value A PHP value */ public static function requiresDoubleQuoting(string $value): bool { return 0 < preg_match('/'.self::REGEX_CHARACTER_TO_ESCAPE.'/u', $value); } /** * Escapes and surrounds a PHP value with double quotes. * * @param string $value A PHP value */ public static function escapeWithDoubleQuotes(string $value): string { return sprintf('"%s"', str_replace(self::ESCAPEES, self::ESCAPED, $value)); } /** * Determines if a PHP value would require single quoting in YAML. * * @param string $value A PHP value */ public static function requiresSingleQuoting(string $value): bool { // 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[ \- ? | < > = ! % @ ` \p{Zs}]/xu', $value); } /** * Escapes and surrounds a PHP value with single quotes. * * @param string $value A PHP value */ public static function escapeWithSingleQuotes(string $value): string { return sprintf("'%s'", str_replace('\'', '\'\'', $value)); } } __halt_compiler();----SIGNATURE:----fptX9WwCzCWuEoVQBkOvEN4c7oSP5uK8IWi/6Btxuu49reNxCWry7rKdbok1pU3QrpNBy5D1vSV0UlSBoCLV1/+MBUGMV+l/MQImVGqbZLBq3RTbcxDgwUyQahqVQQkrmsUTvuqOkjYO5nYD6IWsrbkfPYPA03ARbmkJIAV3A/tuT0U7vDvEHkv3q7HO/lEoZe2FxtmG647OX/Ze9O3YyPgGwGjeYL7pqaLrD66EUzcB3nLP9aWjORgbj3peSLuCbjoS0jTahjUyO+4rbeM02jT4n31Yg2GLfBukw1zuz88WAkf7rdVq1Tpxgyusha5kEvS5posRWPxOvBN/CfmAqnnchALcTlVdO9joHK81SIDgNTaPzMhqbLlsItWQvuZoeInOGoUsUKQ+SFqYiXmZgS/wh1lNS9HqBymXTVXLR/pfgakB1TFkfEimoVGw95+kiL7C4+iYZmVL5fXjA2t2TcKTgrPTGzG6i1esWfSKTtzDnKoIkbhK7UfmWyC/AR5/yYmN1KtFcfUfK4BTx9cXda9bfwdPxbgSLtf+rNWUs8A8PmR3Yi24jicEl1oy5V/cKBNDNBbgpXN4fTrvC6BGQdj4vDWdUmsSygEFT7tbPPEwu3hcPMpJs9SiMu4N/u3Xvn5PDmvu9fjndCkbOEsCqh0s4ImdesMXhME2cfK4uuo=----ATTACHMENT:----MzQ5Mjg0NjYzMjY1MDMyOCA3NjQ1OTM0NDU0Mjc5ODYgNTAzODg0MDYxOTM5OTkxNA==