Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

Array.php 509B

12345678910111213141516171819202122
  1. <?php
  2. /*
  3. * This file is part of Twig.
  4. *
  5. * (c) 2010 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. class Twig_Extensions_Grammar_Array extends Twig_Extensions_Grammar
  11. {
  12. public function __toString()
  13. {
  14. return sprintf('<%s:array>', $this->name);
  15. }
  16. public function parse(Twig_Token $token)
  17. {
  18. return $this->parser->getExpressionParser()->parseArrayExpression();
  19. }
  20. }