$value ), $line, $docComment ); } /** * Creates a String node from a string token (parses escape sequences). * * @param string $str String * @param int $line Line * @param null|string $docComment Nearest doc comment * * @return PHPParser_Node_Scalar_String String Node */ public static function create($str, $line = -1, $docComment = null) { $bLength = 0; if ('b' === $str[0]) { $bLength = 1; } if ('\'' === $str[$bLength]) { $str = str_replace( array('\\\\', '\\\''), array( '\\', '\''), substr($str, $bLength + 1, -1) ); } else { $str = self::parseEscapeSequences(substr($str, $bLength + 1, -1), '"'); } return new self($str, $line, $docComment); } /** * Parses escape sequences in strings (all string types apart from single quoted). * * @param string $str String without quotes * @param null|string $quote Quote type * * @return string String with escape sequences parsed */ public static function parseEscapeSequences($str, $quote) { if (null !== $quote) { $str = str_replace('\\' . $quote, $quote, $str); } return preg_replace_callback( '~\\\\([\\\\$nrtfv]|[xX][0-9a-fA-F]{1,2}|[0-7]{1,3})~', array(__CLASS__, 'parseCallback'), $str ); } protected static $replacements = array( '\\' => '\\', '$' => '$', 'n' => "\n", 'r' => "\r", 't' => "\t", 'f' => "\f", 'v' => "\v", ); public static function parseCallback($matches) { $str = $matches[1]; if (isset(self::$replacements[$str])) { return self::$replacements[$str]; } elseif ('x' === $str[0] || 'X' === $str[0]) { return chr(hexdec($str)); } else { return chr(octdec($str)); } } }