vendor/twig/twig/src/Extension/CoreExtension.php line 1607

Open in your IDE?
  1. <?php
  2. /*
  3.  * This file is part of Twig.
  4.  *
  5.  * (c) Fabien Potencier
  6.  *
  7.  * For the full copyright and license information, please view the LICENSE
  8.  * file that was distributed with this source code.
  9.  */
  10. namespace Twig\Extension {
  11. use Twig\ExpressionParser;
  12. use Twig\Node\Expression\Binary\AddBinary;
  13. use Twig\Node\Expression\Binary\AndBinary;
  14. use Twig\Node\Expression\Binary\BitwiseAndBinary;
  15. use Twig\Node\Expression\Binary\BitwiseOrBinary;
  16. use Twig\Node\Expression\Binary\BitwiseXorBinary;
  17. use Twig\Node\Expression\Binary\ConcatBinary;
  18. use Twig\Node\Expression\Binary\DivBinary;
  19. use Twig\Node\Expression\Binary\EndsWithBinary;
  20. use Twig\Node\Expression\Binary\EqualBinary;
  21. use Twig\Node\Expression\Binary\FloorDivBinary;
  22. use Twig\Node\Expression\Binary\GreaterBinary;
  23. use Twig\Node\Expression\Binary\GreaterEqualBinary;
  24. use Twig\Node\Expression\Binary\InBinary;
  25. use Twig\Node\Expression\Binary\LessBinary;
  26. use Twig\Node\Expression\Binary\LessEqualBinary;
  27. use Twig\Node\Expression\Binary\MatchesBinary;
  28. use Twig\Node\Expression\Binary\ModBinary;
  29. use Twig\Node\Expression\Binary\MulBinary;
  30. use Twig\Node\Expression\Binary\NotEqualBinary;
  31. use Twig\Node\Expression\Binary\NotInBinary;
  32. use Twig\Node\Expression\Binary\OrBinary;
  33. use Twig\Node\Expression\Binary\PowerBinary;
  34. use Twig\Node\Expression\Binary\RangeBinary;
  35. use Twig\Node\Expression\Binary\SpaceshipBinary;
  36. use Twig\Node\Expression\Binary\StartsWithBinary;
  37. use Twig\Node\Expression\Binary\SubBinary;
  38. use Twig\Node\Expression\Filter\DefaultFilter;
  39. use Twig\Node\Expression\NullCoalesceExpression;
  40. use Twig\Node\Expression\Test\ConstantTest;
  41. use Twig\Node\Expression\Test\DefinedTest;
  42. use Twig\Node\Expression\Test\DivisiblebyTest;
  43. use Twig\Node\Expression\Test\EvenTest;
  44. use Twig\Node\Expression\Test\NullTest;
  45. use Twig\Node\Expression\Test\OddTest;
  46. use Twig\Node\Expression\Test\SameasTest;
  47. use Twig\Node\Expression\Unary\NegUnary;
  48. use Twig\Node\Expression\Unary\NotUnary;
  49. use Twig\Node\Expression\Unary\PosUnary;
  50. use Twig\NodeVisitor\MacroAutoImportNodeVisitor;
  51. use Twig\TokenParser\ApplyTokenParser;
  52. use Twig\TokenParser\BlockTokenParser;
  53. use Twig\TokenParser\DeprecatedTokenParser;
  54. use Twig\TokenParser\DoTokenParser;
  55. use Twig\TokenParser\EmbedTokenParser;
  56. use Twig\TokenParser\ExtendsTokenParser;
  57. use Twig\TokenParser\FlushTokenParser;
  58. use Twig\TokenParser\ForTokenParser;
  59. use Twig\TokenParser\FromTokenParser;
  60. use Twig\TokenParser\IfTokenParser;
  61. use Twig\TokenParser\ImportTokenParser;
  62. use Twig\TokenParser\IncludeTokenParser;
  63. use Twig\TokenParser\MacroTokenParser;
  64. use Twig\TokenParser\SetTokenParser;
  65. use Twig\TokenParser\UseTokenParser;
  66. use Twig\TokenParser\WithTokenParser;
  67. use Twig\TwigFilter;
  68. use Twig\TwigFunction;
  69. use Twig\TwigTest;
  70. final class CoreExtension extends AbstractExtension
  71. {
  72.     private $dateFormats = ['F j, Y H:i''%d days'];
  73.     private $numberFormat = [0'.'','];
  74.     private $timezone null;
  75.     /**
  76.      * Sets the default format to be used by the date filter.
  77.      *
  78.      * @param string $format             The default date format string
  79.      * @param string $dateIntervalFormat The default date interval format string
  80.      */
  81.     public function setDateFormat($format null$dateIntervalFormat null)
  82.     {
  83.         if (null !== $format) {
  84.             $this->dateFormats[0] = $format;
  85.         }
  86.         if (null !== $dateIntervalFormat) {
  87.             $this->dateFormats[1] = $dateIntervalFormat;
  88.         }
  89.     }
  90.     /**
  91.      * Gets the default format to be used by the date filter.
  92.      *
  93.      * @return array The default date format string and the default date interval format string
  94.      */
  95.     public function getDateFormat()
  96.     {
  97.         return $this->dateFormats;
  98.     }
  99.     /**
  100.      * Sets the default timezone to be used by the date filter.
  101.      *
  102.      * @param \DateTimeZone|string $timezone The default timezone string or a \DateTimeZone object
  103.      */
  104.     public function setTimezone($timezone)
  105.     {
  106.         $this->timezone $timezone instanceof \DateTimeZone $timezone : new \DateTimeZone($timezone);
  107.     }
  108.     /**
  109.      * Gets the default timezone to be used by the date filter.
  110.      *
  111.      * @return \DateTimeZone The default timezone currently in use
  112.      */
  113.     public function getTimezone()
  114.     {
  115.         if (null === $this->timezone) {
  116.             $this->timezone = new \DateTimeZone(date_default_timezone_get());
  117.         }
  118.         return $this->timezone;
  119.     }
  120.     /**
  121.      * Sets the default format to be used by the number_format filter.
  122.      *
  123.      * @param int    $decimal      the number of decimal places to use
  124.      * @param string $decimalPoint the character(s) to use for the decimal point
  125.      * @param string $thousandSep  the character(s) to use for the thousands separator
  126.      */
  127.     public function setNumberFormat($decimal$decimalPoint$thousandSep)
  128.     {
  129.         $this->numberFormat = [$decimal$decimalPoint$thousandSep];
  130.     }
  131.     /**
  132.      * Get the default format used by the number_format filter.
  133.      *
  134.      * @return array The arguments for number_format()
  135.      */
  136.     public function getNumberFormat()
  137.     {
  138.         return $this->numberFormat;
  139.     }
  140.     public function getTokenParsers(): array
  141.     {
  142.         return [
  143.             new ApplyTokenParser(),
  144.             new ForTokenParser(),
  145.             new IfTokenParser(),
  146.             new ExtendsTokenParser(),
  147.             new IncludeTokenParser(),
  148.             new BlockTokenParser(),
  149.             new UseTokenParser(),
  150.             new MacroTokenParser(),
  151.             new ImportTokenParser(),
  152.             new FromTokenParser(),
  153.             new SetTokenParser(),
  154.             new FlushTokenParser(),
  155.             new DoTokenParser(),
  156.             new EmbedTokenParser(),
  157.             new WithTokenParser(),
  158.             new DeprecatedTokenParser(),
  159.         ];
  160.     }
  161.     public function getFilters(): array
  162.     {
  163.         return [
  164.             // formatting filters
  165.             new TwigFilter('date''twig_date_format_filter', ['needs_environment' => true]),
  166.             new TwigFilter('date_modify''twig_date_modify_filter', ['needs_environment' => true]),
  167.             new TwigFilter('format''twig_sprintf'),
  168.             new TwigFilter('replace''twig_replace_filter'),
  169.             new TwigFilter('number_format''twig_number_format_filter', ['needs_environment' => true]),
  170.             new TwigFilter('abs''abs'),
  171.             new TwigFilter('round''twig_round'),
  172.             // encoding
  173.             new TwigFilter('url_encode''twig_urlencode_filter'),
  174.             new TwigFilter('json_encode''json_encode'),
  175.             new TwigFilter('convert_encoding''twig_convert_encoding'),
  176.             // string filters
  177.             new TwigFilter('title''twig_title_string_filter', ['needs_environment' => true]),
  178.             new TwigFilter('capitalize''twig_capitalize_string_filter', ['needs_environment' => true]),
  179.             new TwigFilter('upper''twig_upper_filter', ['needs_environment' => true]),
  180.             new TwigFilter('lower''twig_lower_filter', ['needs_environment' => true]),
  181.             new TwigFilter('striptags''twig_striptags'),
  182.             new TwigFilter('trim''twig_trim_filter'),
  183.             new TwigFilter('nl2br''twig_nl2br', ['pre_escape' => 'html''is_safe' => ['html']]),
  184.             new TwigFilter('spaceless''twig_spaceless', ['is_safe' => ['html']]),
  185.             // array helpers
  186.             new TwigFilter('join''twig_join_filter'),
  187.             new TwigFilter('split''twig_split_filter', ['needs_environment' => true]),
  188.             new TwigFilter('sort''twig_sort_filter', ['needs_environment' => true]),
  189.             new TwigFilter('merge''twig_array_merge'),
  190.             new TwigFilter('batch''twig_array_batch'),
  191.             new TwigFilter('column''twig_array_column'),
  192.             new TwigFilter('filter''twig_array_filter', ['needs_environment' => true]),
  193.             new TwigFilter('map''twig_array_map', ['needs_environment' => true]),
  194.             new TwigFilter('reduce''twig_array_reduce', ['needs_environment' => true]),
  195.             // string/array filters
  196.             new TwigFilter('reverse''twig_reverse_filter', ['needs_environment' => true]),
  197.             new TwigFilter('length''twig_length_filter', ['needs_environment' => true]),
  198.             new TwigFilter('slice''twig_slice', ['needs_environment' => true]),
  199.             new TwigFilter('first''twig_first', ['needs_environment' => true]),
  200.             new TwigFilter('last''twig_last', ['needs_environment' => true]),
  201.             // iteration and runtime
  202.             new TwigFilter('default''_twig_default_filter', ['node_class' => DefaultFilter::class]),
  203.             new TwigFilter('keys''twig_get_array_keys_filter'),
  204.         ];
  205.     }
  206.     public function getFunctions(): array
  207.     {
  208.         return [
  209.             new TwigFunction('max''max'),
  210.             new TwigFunction('min''min'),
  211.             new TwigFunction('range''range'),
  212.             new TwigFunction('constant''twig_constant'),
  213.             new TwigFunction('cycle''twig_cycle'),
  214.             new TwigFunction('random''twig_random', ['needs_environment' => true]),
  215.             new TwigFunction('date''twig_date_converter', ['needs_environment' => true]),
  216.             new TwigFunction('include''twig_include', ['needs_environment' => true'needs_context' => true'is_safe' => ['all']]),
  217.             new TwigFunction('source''twig_source', ['needs_environment' => true'is_safe' => ['all']]),
  218.         ];
  219.     }
  220.     public function getTests(): array
  221.     {
  222.         return [
  223.             new TwigTest('even'null, ['node_class' => EvenTest::class]),
  224.             new TwigTest('odd'null, ['node_class' => OddTest::class]),
  225.             new TwigTest('defined'null, ['node_class' => DefinedTest::class]),
  226.             new TwigTest('same as'null, ['node_class' => SameasTest::class, 'one_mandatory_argument' => true]),
  227.             new TwigTest('none'null, ['node_class' => NullTest::class]),
  228.             new TwigTest('null'null, ['node_class' => NullTest::class]),
  229.             new TwigTest('divisible by'null, ['node_class' => DivisiblebyTest::class, 'one_mandatory_argument' => true]),
  230.             new TwigTest('constant'null, ['node_class' => ConstantTest::class]),
  231.             new TwigTest('empty''twig_test_empty'),
  232.             new TwigTest('iterable''twig_test_iterable'),
  233.         ];
  234.     }
  235.     public function getNodeVisitors(): array
  236.     {
  237.         return [new MacroAutoImportNodeVisitor()];
  238.     }
  239.     public function getOperators(): array
  240.     {
  241.         return [
  242.             [
  243.                 'not' => ['precedence' => 50'class' => NotUnary::class],
  244.                 '-' => ['precedence' => 500'class' => NegUnary::class],
  245.                 '+' => ['precedence' => 500'class' => PosUnary::class],
  246.             ],
  247.             [
  248.                 'or' => ['precedence' => 10'class' => OrBinary::class, 'associativity' => ExpressionParser::OPERATOR_LEFT],
  249.                 'and' => ['precedence' => 15'class' => AndBinary::class, 'associativity' => ExpressionParser::OPERATOR_LEFT],
  250.                 'b-or' => ['precedence' => 16'class' => BitwiseOrBinary::class, 'associativity' => ExpressionParser::OPERATOR_LEFT],
  251.                 'b-xor' => ['precedence' => 17'class' => BitwiseXorBinary::class, 'associativity' => ExpressionParser::OPERATOR_LEFT],
  252.                 'b-and' => ['precedence' => 18'class' => BitwiseAndBinary::class, 'associativity' => ExpressionParser::OPERATOR_LEFT],
  253.                 '==' => ['precedence' => 20'class' => EqualBinary::class, 'associativity' => ExpressionParser::OPERATOR_LEFT],
  254.                 '!=' => ['precedence' => 20'class' => NotEqualBinary::class, 'associativity' => ExpressionParser::OPERATOR_LEFT],
  255.                 '<=>' => ['precedence' => 20'class' => SpaceshipBinary::class, 'associativity' => ExpressionParser::OPERATOR_LEFT],
  256.                 '<' => ['precedence' => 20'class' => LessBinary::class, 'associativity' => ExpressionParser::OPERATOR_LEFT],
  257.                 '>' => ['precedence' => 20'class' => GreaterBinary::class, 'associativity' => ExpressionParser::OPERATOR_LEFT],
  258.                 '>=' => ['precedence' => 20'class' => GreaterEqualBinary::class, 'associativity' => ExpressionParser::OPERATOR_LEFT],
  259.                 '<=' => ['precedence' => 20'class' => LessEqualBinary::class, 'associativity' => ExpressionParser::OPERATOR_LEFT],
  260.                 'not in' => ['precedence' => 20'class' => NotInBinary::class, 'associativity' => ExpressionParser::OPERATOR_LEFT],
  261.                 'in' => ['precedence' => 20'class' => InBinary::class, 'associativity' => ExpressionParser::OPERATOR_LEFT],
  262.                 'matches' => ['precedence' => 20'class' => MatchesBinary::class, 'associativity' => ExpressionParser::OPERATOR_LEFT],
  263.                 'starts with' => ['precedence' => 20'class' => StartsWithBinary::class, 'associativity' => ExpressionParser::OPERATOR_LEFT],
  264.                 'ends with' => ['precedence' => 20'class' => EndsWithBinary::class, 'associativity' => ExpressionParser::OPERATOR_LEFT],
  265.                 '..' => ['precedence' => 25'class' => RangeBinary::class, 'associativity' => ExpressionParser::OPERATOR_LEFT],
  266.                 '+' => ['precedence' => 30'class' => AddBinary::class, 'associativity' => ExpressionParser::OPERATOR_LEFT],
  267.                 '-' => ['precedence' => 30'class' => SubBinary::class, 'associativity' => ExpressionParser::OPERATOR_LEFT],
  268.                 '~' => ['precedence' => 40'class' => ConcatBinary::class, 'associativity' => ExpressionParser::OPERATOR_LEFT],
  269.                 '*' => ['precedence' => 60'class' => MulBinary::class, 'associativity' => ExpressionParser::OPERATOR_LEFT],
  270.                 '/' => ['precedence' => 60'class' => DivBinary::class, 'associativity' => ExpressionParser::OPERATOR_LEFT],
  271.                 '//' => ['precedence' => 60'class' => FloorDivBinary::class, 'associativity' => ExpressionParser::OPERATOR_LEFT],
  272.                 '%' => ['precedence' => 60'class' => ModBinary::class, 'associativity' => ExpressionParser::OPERATOR_LEFT],
  273.                 'is' => ['precedence' => 100'associativity' => ExpressionParser::OPERATOR_LEFT],
  274.                 'is not' => ['precedence' => 100'associativity' => ExpressionParser::OPERATOR_LEFT],
  275.                 '**' => ['precedence' => 200'class' => PowerBinary::class, 'associativity' => ExpressionParser::OPERATOR_RIGHT],
  276.                 '??' => ['precedence' => 300'class' => NullCoalesceExpression::class, 'associativity' => ExpressionParser::OPERATOR_RIGHT],
  277.             ],
  278.         ];
  279.     }
  280. }
  281. }
  282. namespace {
  283.     use Twig\Environment;
  284.     use Twig\Error\LoaderError;
  285.     use Twig\Error\RuntimeError;
  286.     use Twig\Extension\CoreExtension;
  287.     use Twig\Extension\SandboxExtension;
  288.     use Twig\Markup;
  289.     use Twig\Source;
  290.     use Twig\Template;
  291.     use Twig\TemplateWrapper;
  292. /**
  293.  * Cycles over a value.
  294.  *
  295.  * @param \ArrayAccess|array $values
  296.  * @param int                $position The cycle position
  297.  *
  298.  * @return string The next value in the cycle
  299.  */
  300. function twig_cycle($values$position)
  301. {
  302.     if (!\is_array($values) && !$values instanceof \ArrayAccess) {
  303.         return $values;
  304.     }
  305.     return $values[$position % \count($values)];
  306. }
  307. /**
  308.  * Returns a random value depending on the supplied parameter type:
  309.  * - a random item from a \Traversable or array
  310.  * - a random character from a string
  311.  * - a random integer between 0 and the integer parameter.
  312.  *
  313.  * @param \Traversable|array|int|float|string $values The values to pick a random item from
  314.  * @param int|null                            $max    Maximum value used when $values is an int
  315.  *
  316.  * @throws RuntimeError when $values is an empty array (does not apply to an empty string which is returned as is)
  317.  *
  318.  * @return mixed A random value from the given sequence
  319.  */
  320. function twig_random(Environment $env$values null$max null)
  321. {
  322.     if (null === $values) {
  323.         return null === $max mt_rand() : mt_rand(0, (int) $max);
  324.     }
  325.     if (\is_int($values) || \is_float($values)) {
  326.         if (null === $max) {
  327.             if ($values 0) {
  328.                 $max 0;
  329.                 $min $values;
  330.             } else {
  331.                 $max $values;
  332.                 $min 0;
  333.             }
  334.         } else {
  335.             $min $values;
  336.             $max $max;
  337.         }
  338.         return mt_rand((int) $min, (int) $max);
  339.     }
  340.     if (\is_string($values)) {
  341.         if ('' === $values) {
  342.             return '';
  343.         }
  344.         $charset $env->getCharset();
  345.         if ('UTF-8' !== $charset) {
  346.             $values twig_convert_encoding($values'UTF-8'$charset);
  347.         }
  348.         // unicode version of str_split()
  349.         // split at all positions, but not after the start and not before the end
  350.         $values preg_split('/(?<!^)(?!$)/u'$values);
  351.         if ('UTF-8' !== $charset) {
  352.             foreach ($values as $i => $value) {
  353.                 $values[$i] = twig_convert_encoding($value$charset'UTF-8');
  354.             }
  355.         }
  356.     }
  357.     if (!twig_test_iterable($values)) {
  358.         return $values;
  359.     }
  360.     $values twig_to_array($values);
  361.     if (=== \count($values)) {
  362.         throw new RuntimeError('The random function cannot pick from an empty array.');
  363.     }
  364.     return $values[array_rand($values1)];
  365. }
  366. /**
  367.  * Converts a date to the given format.
  368.  *
  369.  *   {{ post.published_at|date("m/d/Y") }}
  370.  *
  371.  * @param \DateTimeInterface|\DateInterval|string $date     A date
  372.  * @param string|null                             $format   The target format, null to use the default
  373.  * @param \DateTimeZone|string|false|null         $timezone The target timezone, null to use the default, false to leave unchanged
  374.  *
  375.  * @return string The formatted date
  376.  */
  377. function twig_date_format_filter(Environment $env$date$format null$timezone null)
  378. {
  379.     if (null === $format) {
  380.         $formats $env->getExtension(CoreExtension::class)->getDateFormat();
  381.         $format $date instanceof \DateInterval $formats[1] : $formats[0];
  382.     }
  383.     if ($date instanceof \DateInterval) {
  384.         return $date->format($format);
  385.     }
  386.     return twig_date_converter($env$date$timezone)->format($format);
  387. }
  388. /**
  389.  * Returns a new date object modified.
  390.  *
  391.  *   {{ post.published_at|date_modify("-1day")|date("m/d/Y") }}
  392.  *
  393.  * @param \DateTimeInterface|string $date     A date
  394.  * @param string                    $modifier A modifier string
  395.  *
  396.  * @return \DateTimeInterface
  397.  */
  398. function twig_date_modify_filter(Environment $env$date$modifier)
  399. {
  400.     $date twig_date_converter($env$datefalse);
  401.     return $date->modify($modifier);
  402. }
  403. /**
  404.  * Returns a formatted string.
  405.  *
  406.  * @param string|null $format
  407.  * @param ...$values
  408.  *
  409.  * @return string
  410.  */
  411. function twig_sprintf($format, ...$values)
  412. {
  413.     return sprintf($format ?? '', ...$values);
  414. }
  415. /**
  416.  * Converts an input to a \DateTime instance.
  417.  *
  418.  *    {% if date(user.created_at) < date('+2days') %}
  419.  *      {# do something #}
  420.  *    {% endif %}
  421.  *
  422.  * @param \DateTimeInterface|string|null  $date     A date or null to use the current time
  423.  * @param \DateTimeZone|string|false|null $timezone The target timezone, null to use the default, false to leave unchanged
  424.  *
  425.  * @return \DateTimeInterface
  426.  */
  427. function twig_date_converter(Environment $env$date null$timezone null)
  428. {
  429.     // determine the timezone
  430.     if (false !== $timezone) {
  431.         if (null === $timezone) {
  432.             $timezone $env->getExtension(CoreExtension::class)->getTimezone();
  433.         } elseif (!$timezone instanceof \DateTimeZone) {
  434.             $timezone = new \DateTimeZone($timezone);
  435.         }
  436.     }
  437.     // immutable dates
  438.     if ($date instanceof \DateTimeImmutable) {
  439.         return false !== $timezone $date->setTimezone($timezone) : $date;
  440.     }
  441.     if ($date instanceof \DateTimeInterface) {
  442.         $date = clone $date;
  443.         if (false !== $timezone) {
  444.             $date->setTimezone($timezone);
  445.         }
  446.         return $date;
  447.     }
  448.     if (null === $date || 'now' === $date) {
  449.         if (null === $date) {
  450.             $date 'now';
  451.         }
  452.         return new \DateTime($datefalse !== $timezone $timezone $env->getExtension(CoreExtension::class)->getTimezone());
  453.     }
  454.     $asString = (string) $date;
  455.     if (ctype_digit($asString) || (!empty($asString) && '-' === $asString[0] && ctype_digit(substr($asString1)))) {
  456.         $date = new \DateTime('@'.$date);
  457.     } else {
  458.         $date = new \DateTime($date$env->getExtension(CoreExtension::class)->getTimezone());
  459.     }
  460.     if (false !== $timezone) {
  461.         $date->setTimezone($timezone);
  462.     }
  463.     return $date;
  464. }
  465. /**
  466.  * Replaces strings within a string.
  467.  *
  468.  * @param string|null        $str  String to replace in
  469.  * @param array|\Traversable $from Replace values
  470.  *
  471.  * @return string
  472.  */
  473. function twig_replace_filter($str$from)
  474. {
  475.     if (!twig_test_iterable($from)) {
  476.         throw new RuntimeError(sprintf('The "replace" filter expects an array or "Traversable" as replace values, got "%s".', \is_object($from) ? \get_class($from) : \gettype($from)));
  477.     }
  478.     return strtr($str ?? ''twig_to_array($from));
  479. }
  480. /**
  481.  * Rounds a number.
  482.  *
  483.  * @param int|float|string|null $value     The value to round
  484.  * @param int|float             $precision The rounding precision
  485.  * @param string                $method    The method to use for rounding
  486.  *
  487.  * @return int|float The rounded number
  488.  */
  489. function twig_round($value$precision 0$method 'common')
  490. {
  491.     $value = (float) $value;
  492.     if ('common' === $method) {
  493.         return round($value$precision);
  494.     }
  495.     if ('ceil' !== $method && 'floor' !== $method) {
  496.         throw new RuntimeError('The round filter only supports the "common", "ceil", and "floor" methods.');
  497.     }
  498.     return $method($value 10 ** $precision) / 10 ** $precision;
  499. }
  500. /**
  501.  * Number format filter.
  502.  *
  503.  * All of the formatting options can be left null, in that case the defaults will
  504.  * be used. Supplying any of the parameters will override the defaults set in the
  505.  * environment object.
  506.  *
  507.  * @param mixed  $number       A float/int/string of the number to format
  508.  * @param int    $decimal      the number of decimal points to display
  509.  * @param string $decimalPoint the character(s) to use for the decimal point
  510.  * @param string $thousandSep  the character(s) to use for the thousands separator
  511.  *
  512.  * @return string The formatted number
  513.  */
  514. function twig_number_format_filter(Environment $env$number$decimal null$decimalPoint null$thousandSep null)
  515. {
  516.     $defaults $env->getExtension(CoreExtension::class)->getNumberFormat();
  517.     if (null === $decimal) {
  518.         $decimal $defaults[0];
  519.     }
  520.     if (null === $decimalPoint) {
  521.         $decimalPoint $defaults[1];
  522.     }
  523.     if (null === $thousandSep) {
  524.         $thousandSep $defaults[2];
  525.     }
  526.     return number_format((float) $number$decimal$decimalPoint$thousandSep);
  527. }
  528. /**
  529.  * URL encodes (RFC 3986) a string as a path segment or an array as a query string.
  530.  *
  531.  * @param string|array|null $url A URL or an array of query parameters
  532.  *
  533.  * @return string The URL encoded value
  534.  */
  535. function twig_urlencode_filter($url)
  536. {
  537.     if (\is_array($url)) {
  538.         return http_build_query($url'''&', \PHP_QUERY_RFC3986);
  539.     }
  540.     return rawurlencode($url ?? '');
  541. }
  542. /**
  543.  * Merges an array with another one.
  544.  *
  545.  *  {% set items = { 'apple': 'fruit', 'orange': 'fruit' } %}
  546.  *
  547.  *  {% set items = items|merge({ 'peugeot': 'car' }) %}
  548.  *
  549.  *  {# items now contains { 'apple': 'fruit', 'orange': 'fruit', 'peugeot': 'car' } #}
  550.  *
  551.  * @param array|\Traversable $arr1 An array
  552.  * @param array|\Traversable $arr2 An array
  553.  *
  554.  * @return array The merged array
  555.  */
  556. function twig_array_merge($arr1$arr2)
  557. {
  558.     if (!twig_test_iterable($arr1)) {
  559.         throw new RuntimeError(sprintf('The merge filter only works with arrays or "Traversable", got "%s" as first argument.', \gettype($arr1)));
  560.     }
  561.     if (!twig_test_iterable($arr2)) {
  562.         throw new RuntimeError(sprintf('The merge filter only works with arrays or "Traversable", got "%s" as second argument.', \gettype($arr2)));
  563.     }
  564.     return array_merge(twig_to_array($arr1), twig_to_array($arr2));
  565. }
  566. /**
  567.  * Slices a variable.
  568.  *
  569.  * @param mixed $item         A variable
  570.  * @param int   $start        Start of the slice
  571.  * @param int   $length       Size of the slice
  572.  * @param bool  $preserveKeys Whether to preserve key or not (when the input is an array)
  573.  *
  574.  * @return mixed The sliced variable
  575.  */
  576. function twig_slice(Environment $env$item$start$length null$preserveKeys false)
  577. {
  578.     if ($item instanceof \Traversable) {
  579.         while ($item instanceof \IteratorAggregate) {
  580.             $item $item->getIterator();
  581.         }
  582.         if ($start >= && $length >= && $item instanceof \Iterator) {
  583.             try {
  584.                 return iterator_to_array(new \LimitIterator($item$startnull === $length ? -$length), $preserveKeys);
  585.             } catch (\OutOfBoundsException $e) {
  586.                 return [];
  587.             }
  588.         }
  589.         $item iterator_to_array($item$preserveKeys);
  590.     }
  591.     if (\is_array($item)) {
  592.         return \array_slice($item$start$length$preserveKeys);
  593.     }
  594.     return (string) mb_substr((string) $item$start$length$env->getCharset());
  595. }
  596. /**
  597.  * Returns the first element of the item.
  598.  *
  599.  * @param mixed $item A variable
  600.  *
  601.  * @return mixed The first element of the item
  602.  */
  603. function twig_first(Environment $env$item)
  604. {
  605.     $elements twig_slice($env$item01false);
  606.     return \is_string($elements) ? $elements current($elements);
  607. }
  608. /**
  609.  * Returns the last element of the item.
  610.  *
  611.  * @param mixed $item A variable
  612.  *
  613.  * @return mixed The last element of the item
  614.  */
  615. function twig_last(Environment $env$item)
  616. {
  617.     $elements twig_slice($env$item, -11false);
  618.     return \is_string($elements) ? $elements current($elements);
  619. }
  620. /**
  621.  * Joins the values to a string.
  622.  *
  623.  * The separators between elements are empty strings per default, you can define them with the optional parameters.
  624.  *
  625.  *  {{ [1, 2, 3]|join(', ', ' and ') }}
  626.  *  {# returns 1, 2 and 3 #}
  627.  *
  628.  *  {{ [1, 2, 3]|join('|') }}
  629.  *  {# returns 1|2|3 #}
  630.  *
  631.  *  {{ [1, 2, 3]|join }}
  632.  *  {# returns 123 #}
  633.  *
  634.  * @param array       $value An array
  635.  * @param string      $glue  The separator
  636.  * @param string|null $and   The separator for the last pair
  637.  *
  638.  * @return string The concatenated string
  639.  */
  640. function twig_join_filter($value$glue ''$and null)
  641. {
  642.     if (!twig_test_iterable($value)) {
  643.         $value = (array) $value;
  644.     }
  645.     $value twig_to_array($valuefalse);
  646.     if (=== \count($value)) {
  647.         return '';
  648.     }
  649.     if (null === $and || $and === $glue) {
  650.         return implode($glue$value);
  651.     }
  652.     if (=== \count($value)) {
  653.         return $value[0];
  654.     }
  655.     return implode($glue, \array_slice($value0, -1)).$and.$value[\count($value) - 1];
  656. }
  657. /**
  658.  * Splits the string into an array.
  659.  *
  660.  *  {{ "one,two,three"|split(',') }}
  661.  *  {# returns [one, two, three] #}
  662.  *
  663.  *  {{ "one,two,three,four,five"|split(',', 3) }}
  664.  *  {# returns [one, two, "three,four,five"] #}
  665.  *
  666.  *  {{ "123"|split('') }}
  667.  *  {# returns [1, 2, 3] #}
  668.  *
  669.  *  {{ "aabbcc"|split('', 2) }}
  670.  *  {# returns [aa, bb, cc] #}
  671.  *
  672.  * @param string|null $value     A string
  673.  * @param string      $delimiter The delimiter
  674.  * @param int         $limit     The limit
  675.  *
  676.  * @return array The split string as an array
  677.  */
  678. function twig_split_filter(Environment $env$value$delimiter$limit null)
  679. {
  680.     $value $value ?? '';
  681.     if (\strlen($delimiter) > 0) {
  682.         return null === $limit explode($delimiter$value) : explode($delimiter$value$limit);
  683.     }
  684.     if ($limit <= 1) {
  685.         return preg_split('/(?<!^)(?!$)/u'$value);
  686.     }
  687.     $length mb_strlen($value$env->getCharset());
  688.     if ($length $limit) {
  689.         return [$value];
  690.     }
  691.     $r = [];
  692.     for ($i 0$i $length$i += $limit) {
  693.         $r[] = mb_substr($value$i$limit$env->getCharset());
  694.     }
  695.     return $r;
  696. }
  697. // The '_default' filter is used internally to avoid using the ternary operator
  698. // which costs a lot for big contexts (before PHP 5.4). So, on average,
  699. // a function call is cheaper.
  700. /**
  701.  * @internal
  702.  */
  703. function _twig_default_filter($value$default '')
  704. {
  705.     if (twig_test_empty($value)) {
  706.         return $default;
  707.     }
  708.     return $value;
  709. }
  710. /**
  711.  * Returns the keys for the given array.
  712.  *
  713.  * It is useful when you want to iterate over the keys of an array:
  714.  *
  715.  *  {% for key in array|keys %}
  716.  *      {# ... #}
  717.  *  {% endfor %}
  718.  *
  719.  * @param array $array An array
  720.  *
  721.  * @return array The keys
  722.  */
  723. function twig_get_array_keys_filter($array)
  724. {
  725.     if ($array instanceof \Traversable) {
  726.         while ($array instanceof \IteratorAggregate) {
  727.             $array $array->getIterator();
  728.         }
  729.         $keys = [];
  730.         if ($array instanceof \Iterator) {
  731.             $array->rewind();
  732.             while ($array->valid()) {
  733.                 $keys[] = $array->key();
  734.                 $array->next();
  735.             }
  736.             return $keys;
  737.         }
  738.         foreach ($array as $key => $item) {
  739.             $keys[] = $key;
  740.         }
  741.         return $keys;
  742.     }
  743.     if (!\is_array($array)) {
  744.         return [];
  745.     }
  746.     return array_keys($array);
  747. }
  748. /**
  749.  * Reverses a variable.
  750.  *
  751.  * @param array|\Traversable|string|null $item         An array, a \Traversable instance, or a string
  752.  * @param bool                           $preserveKeys Whether to preserve key or not
  753.  *
  754.  * @return mixed The reversed input
  755.  */
  756. function twig_reverse_filter(Environment $env$item$preserveKeys false)
  757. {
  758.     if ($item instanceof \Traversable) {
  759.         return array_reverse(iterator_to_array($item), $preserveKeys);
  760.     }
  761.     if (\is_array($item)) {
  762.         return array_reverse($item$preserveKeys);
  763.     }
  764.     $string = (string) $item;
  765.     $charset $env->getCharset();
  766.     if ('UTF-8' !== $charset) {
  767.         $string twig_convert_encoding($string'UTF-8'$charset);
  768.     }
  769.     preg_match_all('/./us'$string$matches);
  770.     $string implode(''array_reverse($matches[0]));
  771.     if ('UTF-8' !== $charset) {
  772.         $string twig_convert_encoding($string$charset'UTF-8');
  773.     }
  774.     return $string;
  775. }
  776. /**
  777.  * Sorts an array.
  778.  *
  779.  * @param array|\Traversable $array
  780.  *
  781.  * @return array
  782.  */
  783. function twig_sort_filter(Environment $env$array$arrow null)
  784. {
  785.     if ($array instanceof \Traversable) {
  786.         $array iterator_to_array($array);
  787.     } elseif (!\is_array($array)) {
  788.         throw new RuntimeError(sprintf('The sort filter only works with arrays or "Traversable", got "%s".', \gettype($array)));
  789.     }
  790.     if (null !== $arrow) {
  791.         twig_check_arrow_in_sandbox($env$arrow'sort''filter');
  792.         uasort($array$arrow);
  793.     } else {
  794.         asort($array);
  795.     }
  796.     return $array;
  797. }
  798. /**
  799.  * @internal
  800.  */
  801. function twig_in_filter($value$compare)
  802. {
  803.     if ($value instanceof Markup) {
  804.         $value = (string) $value;
  805.     }
  806.     if ($compare instanceof Markup) {
  807.         $compare = (string) $compare;
  808.     }
  809.     if (\is_string($compare)) {
  810.         if (\is_string($value) || \is_int($value) || \is_float($value)) {
  811.             return '' === $value || false !== strpos($compare, (string) $value);
  812.         }
  813.         return false;
  814.     }
  815.     if (!is_iterable($compare)) {
  816.         return false;
  817.     }
  818.     if (\is_object($value) || \is_resource($value)) {
  819.         if (!\is_array($compare)) {
  820.             foreach ($compare as $item) {
  821.                 if ($item === $value) {
  822.                     return true;
  823.                 }
  824.             }
  825.             return false;
  826.         }
  827.         return \in_array($value$comparetrue);
  828.     }
  829.     foreach ($compare as $item) {
  830.         if (=== twig_compare($value$item)) {
  831.             return true;
  832.         }
  833.     }
  834.     return false;
  835. }
  836. /**
  837.  * Compares two values using a more strict version of the PHP non-strict comparison operator.
  838.  *
  839.  * @see https://wiki.php.net/rfc/string_to_number_comparison
  840.  * @see https://wiki.php.net/rfc/trailing_whitespace_numerics
  841.  *
  842.  * @internal
  843.  */
  844. function twig_compare($a$b)
  845. {
  846.     // int <=> string
  847.     if (\is_int($a) && \is_string($b)) {
  848.         $bTrim trim($b" \t\n\r\v\f");
  849.         if (!is_numeric($bTrim)) {
  850.             return (string) $a <=> $b;
  851.         }
  852.         if ((int) $bTrim == $bTrim) {
  853.             return $a <=> (int) $bTrim;
  854.         } else {
  855.             return (float) $a <=> (float) $bTrim;
  856.         }
  857.     }
  858.     if (\is_string($a) && \is_int($b)) {
  859.         $aTrim trim($a" \t\n\r\v\f");
  860.         if (!is_numeric($aTrim)) {
  861.             return $a <=> (string) $b;
  862.         }
  863.         if ((int) $aTrim == $aTrim) {
  864.             return (int) $aTrim <=> $b;
  865.         } else {
  866.             return (float) $aTrim <=> (float) $b;
  867.         }
  868.     }
  869.     // float <=> string
  870.     if (\is_float($a) && \is_string($b)) {
  871.         if (is_nan($a)) {
  872.             return 1;
  873.         }
  874.         $bTrim trim($b" \t\n\r\v\f");
  875.         if (!is_numeric($bTrim)) {
  876.             return (string) $a <=> $b;
  877.         }
  878.         return $a <=> (float) $bTrim;
  879.     }
  880.     if (\is_string($a) && \is_float($b)) {
  881.         if (is_nan($b)) {
  882.             return 1;
  883.         }
  884.         $aTrim trim($a" \t\n\r\v\f");
  885.         if (!is_numeric($aTrim)) {
  886.             return $a <=> (string) $b;
  887.         }
  888.         return (float) $aTrim <=> $b;
  889.     }
  890.     // fallback to <=>
  891.     return $a <=> $b;
  892. }
  893. /**
  894.  * Returns a trimmed string.
  895.  *
  896.  * @param string|null $string
  897.  * @param string|null $characterMask
  898.  * @param string      $side
  899.  *
  900.  * @return string
  901.  *
  902.  * @throws RuntimeError When an invalid trimming side is used (not a string or not 'left', 'right', or 'both')
  903.  */
  904. function twig_trim_filter($string$characterMask null$side 'both')
  905. {
  906.     if (null === $characterMask) {
  907.         $characterMask " \t\n\r\0\x0B";
  908.     }
  909.     switch ($side) {
  910.         case 'both':
  911.             return trim($string ?? ''$characterMask);
  912.         case 'left':
  913.             return ltrim($string ?? ''$characterMask);
  914.         case 'right':
  915.             return rtrim($string ?? ''$characterMask);
  916.         default:
  917.             throw new RuntimeError('Trimming side must be "left", "right" or "both".');
  918.     }
  919. }
  920. /**
  921.  * Inserts HTML line breaks before all newlines in a string.
  922.  *
  923.  * @param string|null $string
  924.  *
  925.  * @return string
  926.  */
  927. function twig_nl2br($string)
  928. {
  929.     return nl2br($string ?? '');
  930. }
  931. /**
  932.  * Removes whitespaces between HTML tags.
  933.  *
  934.  * @param string|null $string
  935.  *
  936.  * @return string
  937.  */
  938. function twig_spaceless($content)
  939. {
  940.     return trim(preg_replace('/>\s+</''><'$content ?? ''));
  941. }
  942. /**
  943.  * @param string|null $string
  944.  * @param string      $to
  945.  * @param string      $from
  946.  *
  947.  * @return string
  948.  */
  949. function twig_convert_encoding($string$to$from)
  950. {
  951.     if (!\function_exists('iconv')) {
  952.         throw new RuntimeError('Unable to convert encoding: required function iconv() does not exist. You should install ext-iconv or symfony/polyfill-iconv.');
  953.     }
  954.     return iconv($from$to$string ?? '');
  955. }
  956. /**
  957.  * Returns the length of a variable.
  958.  *
  959.  * @param mixed $thing A variable
  960.  *
  961.  * @return int The length of the value
  962.  */
  963. function twig_length_filter(Environment $env$thing)
  964. {
  965.     if (null === $thing) {
  966.         return 0;
  967.     }
  968.     if (is_scalar($thing)) {
  969.         return mb_strlen($thing$env->getCharset());
  970.     }
  971.     if ($thing instanceof \Countable || \is_array($thing) || $thing instanceof \SimpleXMLElement) {
  972.         return \count($thing);
  973.     }
  974.     if ($thing instanceof \Traversable) {
  975.         return iterator_count($thing);
  976.     }
  977.     if (method_exists($thing'__toString') && !$thing instanceof \Countable) {
  978.         return mb_strlen((string) $thing$env->getCharset());
  979.     }
  980.     return 1;
  981. }
  982. /**
  983.  * Converts a string to uppercase.
  984.  *
  985.  * @param string|null $string A string
  986.  *
  987.  * @return string The uppercased string
  988.  */
  989. function twig_upper_filter(Environment $env$string)
  990. {
  991.     return mb_strtoupper($string ?? ''$env->getCharset());
  992. }
  993. /**
  994.  * Converts a string to lowercase.
  995.  *
  996.  * @param string|null $string A string
  997.  *
  998.  * @return string The lowercased string
  999.  */
  1000. function twig_lower_filter(Environment $env$string)
  1001. {
  1002.     return mb_strtolower($string ?? ''$env->getCharset());
  1003. }
  1004. /**
  1005.  * Strips HTML and PHP tags from a string.
  1006.  *
  1007.  * @param string|null $string
  1008.  * @param string[]|string|null $string
  1009.  *
  1010.  * @return string
  1011.  */
  1012. function twig_striptags($string$allowable_tags null)
  1013. {
  1014.     return strip_tags($string ?? ''$allowable_tags);
  1015. }
  1016. /**
  1017.  * Returns a titlecased string.
  1018.  *
  1019.  * @param string|null $string A string
  1020.  *
  1021.  * @return string The titlecased string
  1022.  */
  1023. function twig_title_string_filter(Environment $env$string)
  1024. {
  1025.     if (null !== $charset $env->getCharset()) {
  1026.         return mb_convert_case($string ?? '', \MB_CASE_TITLE$charset);
  1027.     }
  1028.     return ucwords(strtolower($string ?? ''));
  1029. }
  1030. /**
  1031.  * Returns a capitalized string.
  1032.  *
  1033.  * @param string|null $string A string
  1034.  *
  1035.  * @return string The capitalized string
  1036.  */
  1037. function twig_capitalize_string_filter(Environment $env$string)
  1038. {
  1039.     $charset $env->getCharset();
  1040.     return mb_strtoupper(mb_substr($string ?? ''01$charset), $charset).mb_strtolower(mb_substr($string ?? ''1null$charset), $charset);
  1041. }
  1042. /**
  1043.  * @internal
  1044.  */
  1045. function twig_call_macro(Template $templatestring $method, array $argsint $lineno, array $contextSource $source)
  1046. {
  1047.     if (!method_exists($template$method)) {
  1048.         $parent $template;
  1049.         while ($parent $parent->getParent($context)) {
  1050.             if (method_exists($parent$method)) {
  1051.                 return $parent->$method(...$args);
  1052.             }
  1053.         }
  1054.         throw new RuntimeError(sprintf('Macro "%s" is not defined in template "%s".'substr($method, \strlen('macro_')), $template->getTemplateName()), $lineno$source);
  1055.     }
  1056.     return $template->$method(...$args);
  1057. }
  1058. /**
  1059.  * @internal
  1060.  */
  1061. function twig_ensure_traversable($seq)
  1062. {
  1063.     if ($seq instanceof \Traversable || \is_array($seq)) {
  1064.         return $seq;
  1065.     }
  1066.     return [];
  1067. }
  1068. /**
  1069.  * @internal
  1070.  */
  1071. function twig_to_array($seq$preserveKeys true)
  1072. {
  1073.     if ($seq instanceof \Traversable) {
  1074.         return iterator_to_array($seq$preserveKeys);
  1075.     }
  1076.     if (!\is_array($seq)) {
  1077.         return $seq;
  1078.     }
  1079.     return $preserveKeys $seq array_values($seq);
  1080. }
  1081. /**
  1082.  * Checks if a variable is empty.
  1083.  *
  1084.  *    {# evaluates to true if the foo variable is null, false, or the empty string #}
  1085.  *    {% if foo is empty %}
  1086.  *        {# ... #}
  1087.  *    {% endif %}
  1088.  *
  1089.  * @param mixed $value A variable
  1090.  *
  1091.  * @return bool true if the value is empty, false otherwise
  1092.  */
  1093. function twig_test_empty($value)
  1094. {
  1095.     if ($value instanceof \Countable) {
  1096.         return === \count($value);
  1097.     }
  1098.     if ($value instanceof \Traversable) {
  1099.         return !iterator_count($value);
  1100.     }
  1101.     if (\is_object($value) && method_exists($value'__toString')) {
  1102.         return '' === (string) $value;
  1103.     }
  1104.     return '' === $value || false === $value || null === $value || [] === $value;
  1105. }
  1106. /**
  1107.  * Checks if a variable is traversable.
  1108.  *
  1109.  *    {# evaluates to true if the foo variable is an array or a traversable object #}
  1110.  *    {% if foo is iterable %}
  1111.  *        {# ... #}
  1112.  *    {% endif %}
  1113.  *
  1114.  * @param mixed $value A variable
  1115.  *
  1116.  * @return bool true if the value is traversable
  1117.  */
  1118. function twig_test_iterable($value)
  1119. {
  1120.     return $value instanceof \Traversable || \is_array($value);
  1121. }
  1122. /**
  1123.  * Renders a template.
  1124.  *
  1125.  * @param array        $context
  1126.  * @param string|array $template      The template to render or an array of templates to try consecutively
  1127.  * @param array        $variables     The variables to pass to the template
  1128.  * @param bool         $withContext
  1129.  * @param bool         $ignoreMissing Whether to ignore missing templates or not
  1130.  * @param bool         $sandboxed     Whether to sandbox the template or not
  1131.  *
  1132.  * @return string The rendered template
  1133.  */
  1134. function twig_include(Environment $env$context$template$variables = [], $withContext true$ignoreMissing false$sandboxed false)
  1135. {
  1136.     $alreadySandboxed false;
  1137.     $sandbox null;
  1138.     if ($withContext) {
  1139.         $variables array_merge($context$variables);
  1140.     }
  1141.     if ($isSandboxed $sandboxed && $env->hasExtension(SandboxExtension::class)) {
  1142.         $sandbox $env->getExtension(SandboxExtension::class);
  1143.         if (!$alreadySandboxed $sandbox->isSandboxed()) {
  1144.             $sandbox->enableSandbox();
  1145.         }
  1146.         foreach ((\is_array($template) ? $template : [$template]) as $name) {
  1147.             // if a Template instance is passed, it might have been instantiated outside of a sandbox, check security
  1148.             if ($name instanceof TemplateWrapper || $name instanceof Template) {
  1149.                 $name->unwrap()->checkSecurity();
  1150.             }
  1151.         }
  1152.     }
  1153.     try {
  1154.         $loaded null;
  1155.         try {
  1156.             $loaded $env->resolveTemplate($template);
  1157.         } catch (LoaderError $e) {
  1158.             if (!$ignoreMissing) {
  1159.                 throw $e;
  1160.             }
  1161.         }
  1162.         return $loaded $loaded->render($variables) : '';
  1163.     } finally {
  1164.         if ($isSandboxed && !$alreadySandboxed) {
  1165.             $sandbox->disableSandbox();
  1166.         }
  1167.     }
  1168. }
  1169. /**
  1170.  * Returns a template content without rendering it.
  1171.  *
  1172.  * @param string $name          The template name
  1173.  * @param bool   $ignoreMissing Whether to ignore missing templates or not
  1174.  *
  1175.  * @return string The template source
  1176.  */
  1177. function twig_source(Environment $env$name$ignoreMissing false)
  1178. {
  1179.     $loader $env->getLoader();
  1180.     try {
  1181.         return $loader->getSourceContext($name)->getCode();
  1182.     } catch (LoaderError $e) {
  1183.         if (!$ignoreMissing) {
  1184.             throw $e;
  1185.         }
  1186.     }
  1187. }
  1188. /**
  1189.  * Provides the ability to get constants from instances as well as class/global constants.
  1190.  *
  1191.  * @param string      $constant The name of the constant
  1192.  * @param object|null $object   The object to get the constant from
  1193.  *
  1194.  * @return string
  1195.  */
  1196. function twig_constant($constant$object null)
  1197. {
  1198.     if (null !== $object) {
  1199.         if ('class' === $constant) {
  1200.             return \get_class($object);
  1201.         }
  1202.         $constant = \get_class($object).'::'.$constant;
  1203.     }
  1204.     return \constant($constant);
  1205. }
  1206. /**
  1207.  * Checks if a constant exists.
  1208.  *
  1209.  * @param string      $constant The name of the constant
  1210.  * @param object|null $object   The object to get the constant from
  1211.  *
  1212.  * @return bool
  1213.  */
  1214. function twig_constant_is_defined($constant$object null)
  1215. {
  1216.     if (null !== $object) {
  1217.         if ('class' === $constant) {
  1218.             return true;
  1219.         }
  1220.         $constant = \get_class($object).'::'.$constant;
  1221.     }
  1222.     return \defined($constant);
  1223. }
  1224. /**
  1225.  * Batches item.
  1226.  *
  1227.  * @param array $items An array of items
  1228.  * @param int   $size  The size of the batch
  1229.  * @param mixed $fill  A value used to fill missing items
  1230.  *
  1231.  * @return array
  1232.  */
  1233. function twig_array_batch($items$size$fill null$preserveKeys true)
  1234. {
  1235.     if (!twig_test_iterable($items)) {
  1236.         throw new RuntimeError(sprintf('The "batch" filter expects an array or "Traversable", got "%s".', \is_object($items) ? \get_class($items) : \gettype($items)));
  1237.     }
  1238.     $size ceil($size);
  1239.     $result array_chunk(twig_to_array($items$preserveKeys), $size$preserveKeys);
  1240.     if (null !== $fill && $result) {
  1241.         $last = \count($result) - 1;
  1242.         if ($fillCount $size - \count($result[$last])) {
  1243.             for ($i 0$i $fillCount; ++$i) {
  1244.                 $result[$last][] = $fill;
  1245.             }
  1246.         }
  1247.     }
  1248.     return $result;
  1249. }
  1250. /**
  1251.  * Returns the attribute value for a given array/object.
  1252.  *
  1253.  * @param mixed  $object            The object or array from where to get the item
  1254.  * @param mixed  $item              The item to get from the array or object
  1255.  * @param array  $arguments         An array of arguments to pass if the item is an object method
  1256.  * @param string $type              The type of attribute (@see \Twig\Template constants)
  1257.  * @param bool   $isDefinedTest     Whether this is only a defined check
  1258.  * @param bool   $ignoreStrictCheck Whether to ignore the strict attribute check or not
  1259.  * @param int    $lineno            The template line where the attribute was called
  1260.  *
  1261.  * @return mixed The attribute value, or a Boolean when $isDefinedTest is true, or null when the attribute is not set and $ignoreStrictCheck is true
  1262.  *
  1263.  * @throws RuntimeError if the attribute does not exist and Twig is running in strict mode and $isDefinedTest is false
  1264.  *
  1265.  * @internal
  1266.  */
  1267. function twig_get_attribute(Environment $envSource $source$object$item, array $arguments = [], $type /* Template::ANY_CALL */ 'any'$isDefinedTest false$ignoreStrictCheck false$sandboxed falseint $lineno = -1)
  1268. {
  1269.     // array
  1270.     if (/* Template::METHOD_CALL */ 'method' !== $type) {
  1271.         $arrayItem = \is_bool($item) || \is_float($item) ? (int) $item $item;
  1272.         if (((\is_array($object) || $object instanceof \ArrayObject) && (isset($object[$arrayItem]) || \array_key_exists($arrayItem, (array) $object)))
  1273.             || ($object instanceof ArrayAccess && isset($object[$arrayItem]))
  1274.         ) {
  1275.             if ($isDefinedTest) {
  1276.                 return true;
  1277.             }
  1278.             return $object[$arrayItem];
  1279.         }
  1280.         if (/* Template::ARRAY_CALL */ 'array' === $type || !\is_object($object)) {
  1281.             if ($isDefinedTest) {
  1282.                 return false;
  1283.             }
  1284.             if ($ignoreStrictCheck || !$env->isStrictVariables()) {
  1285.                 return;
  1286.             }
  1287.             if ($object instanceof ArrayAccess) {
  1288.                 $message sprintf('Key "%s" in object with ArrayAccess of class "%s" does not exist.'$arrayItem, \get_class($object));
  1289.             } elseif (\is_object($object)) {
  1290.                 $message sprintf('Impossible to access a key "%s" on an object of class "%s" that does not implement ArrayAccess interface.'$item, \get_class($object));
  1291.             } elseif (\is_array($object)) {
  1292.                 if (empty($object)) {
  1293.                     $message sprintf('Key "%s" does not exist as the array is empty.'$arrayItem);
  1294.                 } else {
  1295.                     $message sprintf('Key "%s" for array with keys "%s" does not exist.'$arrayItemimplode(', 'array_keys($object)));
  1296.                 }
  1297.             } elseif (/* Template::ARRAY_CALL */ 'array' === $type) {
  1298.                 if (null === $object) {
  1299.                     $message sprintf('Impossible to access a key ("%s") on a null variable.'$item);
  1300.                 } else {
  1301.                     $message sprintf('Impossible to access a key ("%s") on a %s variable ("%s").'$item, \gettype($object), $object);
  1302.                 }
  1303.             } elseif (null === $object) {
  1304.                 $message sprintf('Impossible to access an attribute ("%s") on a null variable.'$item);
  1305.             } else {
  1306.                 $message sprintf('Impossible to access an attribute ("%s") on a %s variable ("%s").'$item, \gettype($object), $object);
  1307.             }
  1308.             throw new RuntimeError($message$lineno$source);
  1309.         }
  1310.     }
  1311.     if (!\is_object($object)) {
  1312.         if ($isDefinedTest) {
  1313.             return false;
  1314.         }
  1315.         if ($ignoreStrictCheck || !$env->isStrictVariables()) {
  1316.             return;
  1317.         }
  1318.         if (null === $object) {
  1319.             $message sprintf('Impossible to invoke a method ("%s") on a null variable.'$item);
  1320.         } elseif (\is_array($object)) {
  1321.             $message sprintf('Impossible to invoke a method ("%s") on an array.'$item);
  1322.         } else {
  1323.             $message sprintf('Impossible to invoke a method ("%s") on a %s variable ("%s").'$item, \gettype($object), $object);
  1324.         }
  1325.         throw new RuntimeError($message$lineno$source);
  1326.     }
  1327.     if ($object instanceof Template) {
  1328.         throw new RuntimeError('Accessing \Twig\Template attributes is forbidden.'$lineno$source);
  1329.     }
  1330.     // object property
  1331.     if (/* Template::METHOD_CALL */ 'method' !== $type) {
  1332.         if (isset($object->$item) || \array_key_exists((string) $item, (array) $object)) {
  1333.             if ($isDefinedTest) {
  1334.                 return true;
  1335.             }
  1336.             if ($sandboxed) {
  1337.                 $env->getExtension(SandboxExtension::class)->checkPropertyAllowed($object$item$lineno$source);
  1338.             }
  1339.             return $object->$item;
  1340.         }
  1341.     }
  1342.     static $cache = [];
  1343.     $class = \get_class($object);
  1344.     // object method
  1345.     // precedence: getXxx() > isXxx() > hasXxx()
  1346.     if (!isset($cache[$class])) {
  1347.         $methods get_class_methods($object);
  1348.         sort($methods);
  1349.         $lcMethods array_map(function ($value) { return strtr($value'ABCDEFGHIJKLMNOPQRSTUVWXYZ''abcdefghijklmnopqrstuvwxyz'); }, $methods);
  1350.         $classCache = [];
  1351.         foreach ($methods as $i => $method) {
  1352.             $classCache[$method] = $method;
  1353.             $classCache[$lcName $lcMethods[$i]] = $method;
  1354.             if ('g' === $lcName[0] && === strpos($lcName'get')) {
  1355.                 $name substr($method3);
  1356.                 $lcName substr($lcName3);
  1357.             } elseif ('i' === $lcName[0] && === strpos($lcName'is')) {
  1358.                 $name substr($method2);
  1359.                 $lcName substr($lcName2);
  1360.             } elseif ('h' === $lcName[0] && === strpos($lcName'has')) {
  1361.                 $name substr($method3);
  1362.                 $lcName substr($lcName3);
  1363.                 if (\in_array('is'.$lcName$lcMethods)) {
  1364.                     continue;
  1365.                 }
  1366.             } else {
  1367.                 continue;
  1368.             }
  1369.             // skip get() and is() methods (in which case, $name is empty)
  1370.             if ($name) {
  1371.                 if (!isset($classCache[$name])) {
  1372.                     $classCache[$name] = $method;
  1373.                 }
  1374.                 if (!isset($classCache[$lcName])) {
  1375.                     $classCache[$lcName] = $method;
  1376.                 }
  1377.             }
  1378.         }
  1379.         $cache[$class] = $classCache;
  1380.     }
  1381.     $call false;
  1382.     if (isset($cache[$class][$item])) {
  1383.         $method $cache[$class][$item];
  1384.     } elseif (isset($cache[$class][$lcItem strtr($item'ABCDEFGHIJKLMNOPQRSTUVWXYZ''abcdefghijklmnopqrstuvwxyz')])) {
  1385.         $method $cache[$class][$lcItem];
  1386.     } elseif (isset($cache[$class]['__call'])) {
  1387.         $method $item;
  1388.         $call true;
  1389.     } else {
  1390.         if ($isDefinedTest) {
  1391.             return false;
  1392.         }
  1393.         if ($ignoreStrictCheck || !$env->isStrictVariables()) {
  1394.             return;
  1395.         }
  1396.         throw new RuntimeError(sprintf('Neither the property "%1$s" nor one of the methods "%1$s()", "get%1$s()"/"is%1$s()"/"has%1$s()" or "__call()" exist and have public access in class "%2$s".'$item$class), $lineno$source);
  1397.     }
  1398.     if ($isDefinedTest) {
  1399.         return true;
  1400.     }
  1401.     if ($sandboxed) {
  1402.         $env->getExtension(SandboxExtension::class)->checkMethodAllowed($object$method$lineno$source);
  1403.     }
  1404.     // Some objects throw exceptions when they have __call, and the method we try
  1405.     // to call is not supported. If ignoreStrictCheck is true, we should return null.
  1406.     try {
  1407.         $ret $object->$method(...$arguments);
  1408.     } catch (\BadMethodCallException $e) {
  1409.         if ($call && ($ignoreStrictCheck || !$env->isStrictVariables())) {
  1410.             return;
  1411.         }
  1412.         throw $e;
  1413.     }
  1414.     return $ret;
  1415. }
  1416. /**
  1417.  * Returns the values from a single column in the input array.
  1418.  *
  1419.  * <pre>
  1420.  *  {% set items = [{ 'fruit' : 'apple'}, {'fruit' : 'orange' }] %}
  1421.  *
  1422.  *  {% set fruits = items|column('fruit') %}
  1423.  *
  1424.  *  {# fruits now contains ['apple', 'orange'] #}
  1425.  * </pre>
  1426.  *
  1427.  * @param array|Traversable $array An array
  1428.  * @param mixed             $name  The column name
  1429.  * @param mixed             $index The column to use as the index/keys for the returned array
  1430.  *
  1431.  * @return array The array of values
  1432.  */
  1433. function twig_array_column($array$name$index null): array
  1434. {
  1435.     if ($array instanceof Traversable) {
  1436.         $array iterator_to_array($array);
  1437.     } elseif (!\is_array($array)) {
  1438.         throw new RuntimeError(sprintf('The column filter only works with arrays or "Traversable", got "%s" as first argument.', \gettype($array)));
  1439.     }
  1440.     return array_column($array$name$index);
  1441. }
  1442. function twig_array_filter(Environment $env$array$arrow)
  1443. {
  1444.     if (!twig_test_iterable($array)) {
  1445.         throw new RuntimeError(sprintf('The "filter" filter expects an array or "Traversable", got "%s".', \is_object($array) ? \get_class($array) : \gettype($array)));
  1446.     }
  1447.     twig_check_arrow_in_sandbox($env$arrow'filter''filter');
  1448.     if (\is_array($array)) {
  1449.         return array_filter($array$arrow, \ARRAY_FILTER_USE_BOTH);
  1450.     }
  1451.     // the IteratorIterator wrapping is needed as some internal PHP classes are \Traversable but do not implement \Iterator
  1452.     return new \CallbackFilterIterator(new \IteratorIterator($array), $arrow);
  1453. }
  1454. function twig_array_map(Environment $env$array$arrow)
  1455. {
  1456.     twig_check_arrow_in_sandbox($env$arrow'map''filter');
  1457.     $r = [];
  1458.     foreach ($array as $k => $v) {
  1459.         $r[$k] = $arrow($v$k);
  1460.     }
  1461.     return $r;
  1462. }
  1463. function twig_array_reduce(Environment $env$array$arrow$initial null)
  1464. {
  1465.     twig_check_arrow_in_sandbox($env$arrow'reduce''filter');
  1466.     if (!\is_array($array)) {
  1467.         if (!$array instanceof \Traversable) {
  1468.             throw new RuntimeError(sprintf('The "reduce" filter only works with arrays or "Traversable", got "%s" as first argument.', \gettype($array)));
  1469.         }
  1470.         $array iterator_to_array($array);
  1471.     }
  1472.     return array_reduce($array$arrow$initial);
  1473. }
  1474. function twig_check_arrow_in_sandbox(Environment $env$arrow$thing$type)
  1475. {
  1476.     if (!$arrow instanceof Closure && $env->hasExtension('\Twig\Extension\SandboxExtension') && $env->getExtension('\Twig\Extension\SandboxExtension')->isSandboxed()) {
  1477.         throw new RuntimeError(sprintf('The callable passed to the "%s" %s must be a Closure in sandbox mode.'$thing$type));
  1478.     }
  1479. }
  1480. }