!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/cloud_campaign/vendor/brick/math/src/Internal/Calculator/   drwxr-xr-x
Free 13.37 GB of 57.97 GB (23.06%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


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

declare(strict_types=1);

namespace 
Brick\Math\Internal\Calculator;

use 
Brick\Math\Internal\Calculator;

/**
 * Calculator implementation built around the bcmath library.
 *
 * @internal
 *
 * @psalm-immutable
 */
class BcMathCalculator extends Calculator
{
    
/**
     * {@inheritdoc}
     */
    
public function add(string $astring $b) : string
    
{
        return 
\bcadd($a$b0);
    }

    
/**
     * {@inheritdoc}
     */
    
public function sub(string $astring $b) : string
    
{
        return 
\bcsub($a$b0);
    }

    
/**
     * {@inheritdoc}
     */
    
public function mul(string $astring $b) : string
    
{
        return 
\bcmul($a$b0);
    }

    
/**
     * {@inheritdoc}
     *
     * @psalm-suppress InvalidNullableReturnType
     * @psalm-suppress NullableReturnStatement
     */
    
public function divQ(string $astring $b) : string
    
{
        return 
\bcdiv($a$b0);
    }

    
/**
     * {@inheritdoc}
     *
     * @psalm-suppress InvalidNullableReturnType
     * @psalm-suppress NullableReturnStatement
     */
    
public function divR(string $astring $b) : string
    
{
        if (
version_compare(PHP_VERSION'7.2') >= 0) {
            return 
\bcmod($a$b0);
        }

        return 
\bcmod($a$b);
    }

    
/**
     * {@inheritdoc}
     */
    
public function divQR(string $astring $b) : array
    {
        
$q \bcdiv($a$b0);

        if (
version_compare(PHP_VERSION'7.2') >= 0) {
            
$r \bcmod($a$b0);
        } else {
            
$r \bcmod($a$b);
        }

        
assert($q !== null);
        
assert($r !== null);

        return [
$q$r];
    }

    
/**
     * {@inheritdoc}
     */
    
public function pow(string $aint $e) : string
    
{
        return 
\bcpow($a, (string) $e0);
    }

    
/**
     * {@inheritdoc}
     *
     * @psalm-suppress InvalidNullableReturnType
     * @psalm-suppress NullableReturnStatement
     */
    
public function modPow(string $basestring $expstring $mod) : string
    
{
        return 
\bcpowmod($base$exp$mod0);
    }

    
/**
     * {@inheritDoc}
     *
     * @psalm-suppress NullableReturnStatement
     * @psalm-suppress InvalidNullableReturnType
     */
    
public function sqrt(string $n) : string
    
{
        return 
\bcsqrt($n0);
    }
}

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