!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/multirest.picotech.app/public_html/vendor/sebastian/object-enumerator/src/   drwxr-xr-x
Free 28.63 GB of 117.98 GB (24.26%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     Enumerator.php (2.24 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php declare(strict_types=1);
/*
 * This file is part of sebastian/object-enumerator.
 *
 * (c) Sebastian Bergmann <sebastian@phpunit.de>
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */
namespace SebastianBergmann\ObjectEnumerator;

use function 
array_merge;
use function 
func_get_args;
use function 
is_array;
use function 
is_object;
use 
SebastianBergmann\ObjectReflector\ObjectReflector;
use 
SebastianBergmann\RecursionContext\Context;

/**
 * Traverses array structures and object graphs
 * to enumerate all referenced objects.
 */
class Enumerator
{
    
/**
     * Returns an array of all objects referenced either
     * directly or indirectly by a variable.
     *
     * @param array|object $variable
     *
     * @return object[]
     */
    
public function enumerate($variable)
    {
        if (!
is_array($variable) && !is_object($variable)) {
            throw new 
InvalidArgumentException;
        }

        if (isset(
func_get_args()[1])) {
            if (!
func_get_args()[1] instanceof Context) {
                throw new 
InvalidArgumentException;
            }

            
$processed func_get_args()[1];
        } else {
            
$processed = new Context;
        }

        
$objects = [];

        if (
$processed->contains($variable)) {
            return 
$objects;
        }

        
$array $variable;
        
$processed->add($variable);

        if (
is_array($variable)) {
            foreach (
$array as $element) {
                if (!
is_array($element) && !is_object($element)) {
                    continue;
                }

                
$objects array_merge(
                    
$objects,
                    
$this->enumerate($element$processed)
                );
            }
        } else {
            
$objects[] = $variable;

            
$reflector = new ObjectReflector;

            foreach (
$reflector->getAttributes($variable) as $value) {
                if (!
is_array($value) && !is_object($value)) {
                    continue;
                }

                
$objects array_merge(
                    
$objects,
                    
$this->enumerate($value$processed)
                );
            }
        }

        return 
$objects;
    }
}

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