!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/main_file/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Engineering/   drwxr-xr-x
Free 13.06 GB of 57.97 GB (22.53%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


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

namespace PhpOffice\PhpSpreadsheet\Calculation\Engineering;

use 
PhpOffice\PhpSpreadsheet\Calculation\Exception;
use 
PhpOffice\PhpSpreadsheet\Calculation\Information\ExcelError;

class 
ConvertBinary extends ConvertBase
{
    
/**
     * toDecimal.
     *
     * Return a binary value as decimal.
     *
     * Excel Function:
     *        BIN2DEC(x)
     *
     * @param array|string $value The binary number (as a string) that you want to convert. The number
     *                                cannot contain more than 10 characters (10 bits). The most significant
     *                                bit of number is the sign bit. The remaining 9 bits are magnitude bits.
     *                                Negative numbers are represented using two's-complement notation.
     *                                If number is not a valid binary number, or if number contains more than
     *                                10 characters (10 bits), BIN2DEC returns the #NUM! error value.
     *                      Or can be an array of values
     *
     * @return array|string Result, or an error
     *         If an array of numbers is passed as an argument, then the returned result will also be an array
     *            with the same dimensions
     */
    
public static function toDecimal($value)
    {
        if (
is_array($value)) {
            return 
self::evaluateSingleArgumentArray([self::class, __FUNCTION__], $value);
        }

        try {
            
$value self::validateValue($value);
            
$value self::validateBinary($value);
        } catch (
Exception $e) {
            return 
$e->getMessage();
        }

        if (
strlen($value) == 10) {
            
//    Two's Complement
            
$value substr($value, -9);

            return 
'-' . (512 bindec($value));
        }

        return (string) 
bindec($value);
    }

    
/**
     * toHex.
     *
     * Return a binary value as hex.
     *
     * Excel Function:
     *        BIN2HEX(x[,places])
     *
     * @param array|string $value The binary number (as a string) that you want to convert. The number
     *                                cannot contain more than 10 characters (10 bits). The most significant
     *                                bit of number is the sign bit. The remaining 9 bits are magnitude bits.
     *                                Negative numbers are represented using two's-complement notation.
     *                                If number is not a valid binary number, or if number contains more than
     *                                10 characters (10 bits), BIN2HEX returns the #NUM! error value.
     *                      Or can be an array of values
     * @param array|int $places The number of characters to use. If places is omitted, BIN2HEX uses the
     *                                minimum number of characters necessary. Places is useful for padding the
     *                                return value with leading 0s (zeros).
     *                                If places is not an integer, it is truncated.
     *                                If places is nonnumeric, BIN2HEX returns the #VALUE! error value.
     *                                If places is negative, BIN2HEX returns the #NUM! error value.
     *                      Or can be an array of values
     *
     * @return array|string Result, or an error
     *         If an array of numbers is passed as an argument, then the returned result will also be an array
     *            with the same dimensions
     */
    
public static function toHex($value$places null)
    {
        if (
is_array($value) || is_array($places)) {
            return 
self::evaluateArrayArguments([self::class, __FUNCTION__], $value$places);
        }

        try {
            
$value self::validateValue($value);
            
$value self::validateBinary($value);
            
$places self::validatePlaces($places);
        } catch (
Exception $e) {
            return 
$e->getMessage();
        }

        if (
strlen($value) == 10) {
            
$high2 substr($value02);
            
$low8 substr($value2);
            
$xarr = ['00' => '00000000''01' => '00000001''10' => 'FFFFFFFE''11' => 'FFFFFFFF'];

            return 
$xarr[$high2] . strtoupper(substr('0' dechex((int) bindec($low8)), -2));
        }
        
$hexVal = (string) strtoupper(dechex((int) bindec($value)));

        return 
self::nbrConversionFormat($hexVal$places);
    }

    
/**
     * toOctal.
     *
     * Return a binary value as octal.
     *
     * Excel Function:
     *        BIN2OCT(x[,places])
     *
     * @param array|string $value The binary number (as a string) that you want to convert. The number
     *                                cannot contain more than 10 characters (10 bits). The most significant
     *                                bit of number is the sign bit. The remaining 9 bits are magnitude bits.
     *                                Negative numbers are represented using two's-complement notation.
     *                                If number is not a valid binary number, or if number contains more than
     *                                10 characters (10 bits), BIN2OCT returns the #NUM! error value.
     *                      Or can be an array of values
     * @param array|int $places The number of characters to use. If places is omitted, BIN2OCT uses the
     *                                minimum number of characters necessary. Places is useful for padding the
     *                                return value with leading 0s (zeros).
     *                                If places is not an integer, it is truncated.
     *                                If places is nonnumeric, BIN2OCT returns the #VALUE! error value.
     *                                If places is negative, BIN2OCT returns the #NUM! error value.
     *                      Or can be an array of values
     *
     * @return array|string Result, or an error
     *         If an array of numbers is passed as an argument, then the returned result will also be an array
     *            with the same dimensions
     */
    
public static function toOctal($value$places null)
    {
        if (
is_array($value) || is_array($places)) {
            return 
self::evaluateArrayArguments([self::class, __FUNCTION__], $value$places);
        }

        try {
            
$value self::validateValue($value);
            
$value self::validateBinary($value);
            
$places self::validatePlaces($places);
        } catch (
Exception $e) {
            return 
$e->getMessage();
        }

        if (
strlen($value) == 10 && substr($value01) === '1') { //    Two's Complement
            
return str_repeat('7'6) . strtoupper(decoct((int) bindec("11$value")));
        }
        
$octVal = (string) decoct((int) bindec($value));

        return 
self::nbrConversionFormat($octVal$places);
    }

    protected static function 
validateBinary(string $value): string
    
{
        if ((
strlen($value) > preg_match_all('/[01]/'$value)) || (strlen($value) > 10)) {
            throw new 
Exception(ExcelError::NAN());
        }

        return 
$value;
    }
}

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