2017-08-18 22:57:27 +02:00
|
|
|
<?php declare(strict_types=1);
|
2011-05-27 18:20:44 +02:00
|
|
|
|
2014-02-06 14:44:16 +01:00
|
|
|
namespace PhpParser\Node\Scalar;
|
|
|
|
|
2015-06-13 20:51:02 +02:00
|
|
|
use PhpParser\Error;
|
2014-02-06 14:44:16 +01:00
|
|
|
use PhpParser\Node\Scalar;
|
|
|
|
|
2015-03-20 21:47:20 +01:00
|
|
|
class String_ extends Scalar
|
2011-05-27 18:20:44 +02:00
|
|
|
{
|
2016-04-02 15:22:24 +02:00
|
|
|
/* For use in "kind" attribute */
|
|
|
|
const KIND_SINGLE_QUOTED = 1;
|
|
|
|
const KIND_DOUBLE_QUOTED = 2;
|
|
|
|
const KIND_HEREDOC = 3;
|
|
|
|
const KIND_NOWDOC = 4;
|
|
|
|
|
2015-02-28 18:44:28 +01:00
|
|
|
/** @var string String value */
|
|
|
|
public $value;
|
|
|
|
|
2017-08-13 14:06:08 +02:00
|
|
|
protected static $replacements = [
|
2011-12-04 16:52:43 +01:00
|
|
|
'\\' => '\\',
|
|
|
|
'$' => '$',
|
|
|
|
'n' => "\n",
|
|
|
|
'r' => "\r",
|
|
|
|
't' => "\t",
|
|
|
|
'f' => "\f",
|
|
|
|
'v' => "\v",
|
2011-12-04 17:35:30 +01:00
|
|
|
'e' => "\x1B",
|
2017-08-13 14:06:08 +02:00
|
|
|
];
|
2011-12-04 16:52:43 +01:00
|
|
|
|
2011-08-09 14:55:45 +02:00
|
|
|
/**
|
|
|
|
* Constructs a string scalar node.
|
|
|
|
*
|
2012-04-29 23:32:09 +02:00
|
|
|
* @param string $value Value of the string
|
|
|
|
* @param array $attributes Additional attributes
|
2011-08-09 14:55:45 +02:00
|
|
|
*/
|
2017-08-13 14:06:08 +02:00
|
|
|
public function __construct(string $value, array $attributes = []) {
|
2019-05-12 14:55:21 +02:00
|
|
|
$this->attributes = $attributes;
|
2015-02-28 18:44:28 +01:00
|
|
|
$this->value = $value;
|
|
|
|
}
|
|
|
|
|
2017-04-28 21:40:59 +02:00
|
|
|
public function getSubNodeNames() : array {
|
2017-08-13 14:06:08 +02:00
|
|
|
return ['value'];
|
2011-08-09 14:55:45 +02:00
|
|
|
}
|
|
|
|
|
2011-05-28 00:21:12 +02:00
|
|
|
/**
|
2014-09-30 20:23:25 +02:00
|
|
|
* @internal
|
|
|
|
*
|
2012-10-19 15:17:08 +02:00
|
|
|
* Parses a string token.
|
2011-05-28 00:21:12 +02:00
|
|
|
*
|
2012-10-19 15:17:08 +02:00
|
|
|
* @param string $str String token content
|
2015-06-13 20:51:02 +02:00
|
|
|
* @param bool $parseUnicodeEscape Whether to parse PHP 7 \u escapes
|
2011-06-01 22:37:10 +02:00
|
|
|
*
|
2012-10-19 15:17:08 +02:00
|
|
|
* @return string The parsed string
|
2011-05-28 00:21:12 +02:00
|
|
|
*/
|
2017-04-28 21:40:59 +02:00
|
|
|
public static function parse(string $str, bool $parseUnicodeEscape = true) : string {
|
2011-08-09 14:19:44 +02:00
|
|
|
$bLength = 0;
|
2016-04-02 14:15:49 +02:00
|
|
|
if ('b' === $str[0] || 'B' === $str[0]) {
|
2011-08-09 14:19:44 +02:00
|
|
|
$bLength = 1;
|
2011-05-28 00:21:12 +02:00
|
|
|
}
|
|
|
|
|
2011-08-20 10:40:27 +02:00
|
|
|
if ('\'' === $str[$bLength]) {
|
2012-10-19 15:17:08 +02:00
|
|
|
return str_replace(
|
2017-08-13 14:06:08 +02:00
|
|
|
['\\\\', '\\\''],
|
2018-01-10 17:18:49 +01:00
|
|
|
['\\', '\''],
|
2011-08-20 10:40:27 +02:00
|
|
|
substr($str, $bLength + 1, -1)
|
2011-05-28 00:21:12 +02:00
|
|
|
);
|
|
|
|
} else {
|
2015-06-13 20:51:02 +02:00
|
|
|
return self::parseEscapeSequences(
|
|
|
|
substr($str, $bLength + 1, -1), '"', $parseUnicodeEscape
|
|
|
|
);
|
2011-05-28 00:21:12 +02:00
|
|
|
}
|
2011-05-29 19:38:04 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2014-09-30 20:23:25 +02:00
|
|
|
* @internal
|
|
|
|
*
|
2011-08-20 10:40:27 +02:00
|
|
|
* Parses escape sequences in strings (all string types apart from single quoted).
|
2011-05-29 19:38:04 +02:00
|
|
|
*
|
2011-08-20 10:40:27 +02:00
|
|
|
* @param string $str String without quotes
|
|
|
|
* @param null|string $quote Quote type
|
2015-06-13 20:51:02 +02:00
|
|
|
* @param bool $parseUnicodeEscape Whether to parse PHP 7 \u escapes
|
2011-06-01 22:37:10 +02:00
|
|
|
*
|
2011-05-29 19:38:04 +02:00
|
|
|
* @return string String with escape sequences parsed
|
|
|
|
*/
|
2017-04-28 21:40:59 +02:00
|
|
|
public static function parseEscapeSequences(string $str, $quote, bool $parseUnicodeEscape = true) : string {
|
2011-08-20 10:40:27 +02:00
|
|
|
if (null !== $quote) {
|
|
|
|
$str = str_replace('\\' . $quote, $quote, $str);
|
|
|
|
}
|
2011-05-29 19:38:04 +02:00
|
|
|
|
2015-06-13 20:51:02 +02:00
|
|
|
$extra = '';
|
|
|
|
if ($parseUnicodeEscape) {
|
|
|
|
$extra = '|u\{([0-9a-fA-F]+)\}';
|
|
|
|
}
|
|
|
|
|
2011-08-20 10:40:27 +02:00
|
|
|
return preg_replace_callback(
|
2015-06-13 20:51:02 +02:00
|
|
|
'~\\\\([\\\\$nrtfve]|[xX][0-9a-fA-F]{1,2}|[0-7]{1,3}' . $extra . ')~',
|
2015-05-02 22:35:15 +02:00
|
|
|
function($matches) {
|
|
|
|
$str = $matches[1];
|
|
|
|
|
|
|
|
if (isset(self::$replacements[$str])) {
|
|
|
|
return self::$replacements[$str];
|
|
|
|
} elseif ('x' === $str[0] || 'X' === $str[0]) {
|
2019-07-14 10:56:13 +02:00
|
|
|
return chr(hexdec(substr($str, 1)));
|
2015-06-13 20:51:02 +02:00
|
|
|
} elseif ('u' === $str[0]) {
|
|
|
|
return self::codePointToUtf8(hexdec($matches[2]));
|
2015-05-02 22:35:15 +02:00
|
|
|
} else {
|
|
|
|
return chr(octdec($str));
|
|
|
|
}
|
|
|
|
},
|
2011-08-20 10:40:27 +02:00
|
|
|
$str
|
2011-05-29 19:38:04 +02:00
|
|
|
);
|
2011-05-28 00:21:12 +02:00
|
|
|
}
|
2011-08-20 10:40:27 +02:00
|
|
|
|
2017-01-24 08:38:55 +01:00
|
|
|
/**
|
2017-01-26 00:16:54 +01:00
|
|
|
* Converts a Unicode code point to its UTF-8 encoded representation.
|
|
|
|
*
|
|
|
|
* @param int $num Code point
|
|
|
|
*
|
|
|
|
* @return string UTF-8 representation of code point
|
2017-01-24 08:38:55 +01:00
|
|
|
*/
|
2017-04-28 21:40:59 +02:00
|
|
|
private static function codePointToUtf8(int $num) : string {
|
2015-06-13 20:51:02 +02:00
|
|
|
if ($num <= 0x7F) {
|
|
|
|
return chr($num);
|
|
|
|
}
|
|
|
|
if ($num <= 0x7FF) {
|
|
|
|
return chr(($num>>6) + 0xC0) . chr(($num&0x3F) + 0x80);
|
|
|
|
}
|
|
|
|
if ($num <= 0xFFFF) {
|
|
|
|
return chr(($num>>12) + 0xE0) . chr((($num>>6)&0x3F) + 0x80) . chr(($num&0x3F) + 0x80);
|
|
|
|
}
|
|
|
|
if ($num <= 0x1FFFFF) {
|
|
|
|
return chr(($num>>18) + 0xF0) . chr((($num>>12)&0x3F) + 0x80)
|
|
|
|
. chr((($num>>6)&0x3F) + 0x80) . chr(($num&0x3F) + 0x80);
|
|
|
|
}
|
|
|
|
throw new Error('Invalid UTF-8 codepoint escape sequence: Codepoint too large');
|
|
|
|
}
|
2019-07-14 10:56:13 +02:00
|
|
|
|
2018-01-10 18:57:48 +01:00
|
|
|
public function getType() : string {
|
2017-11-12 21:25:57 +01:00
|
|
|
return 'Scalar_String';
|
|
|
|
}
|
2015-02-28 18:44:28 +01:00
|
|
|
}
|