__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
<?php
declare(strict_types=1);
namespace TYPO3\PharStreamWrapper\Phar;
/*
* This file is part of the TYPO3 project.
*
* It is free software; you can redistribute it and/or modify it under the terms
* of the MIT License (MIT). For the full copyright and license information,
* please read the LICENSE file that was distributed with this source code.
*
* The TYPO3 project - inspiring people to share!
*/
/**
* @internal Experimental implementation of Phar archive internals
*/
class Stub
{
public static function fromContent(string $content): self
{
$target = new static();
$target->content = $content;
if (
stripos($content, 'Phar::mapPhar(') !== false
&& preg_match('#Phar\:\:mapPhar\(([^)]+)\)#', $content, $matches)
) {
// remove spaces, single & double quotes
// @todo `'my' . 'alias' . '.phar'` is not evaluated here
$target->mappedAlias = trim($matches[1], ' \'"');
}
return $target;
}
/**
* @var null|string
*/
private $content = null;
/**
* @var string
*/
private $mappedAlias = '';
/**
* @return null|string
*/
public function getContent()
{
return $this->content;
}
public function getMappedAlias(): string
{
return $this->mappedAlias;
}
}
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| Container.php | File | 984 B | 0664 |
|
| DeserializationException.php | File | 506 B | 0664 |
|
| Manifest.php | File | 3.28 KB | 0664 |
|
| Reader.php | File | 7.5 KB | 0664 |
|
| ReaderException.php | File | 497 B | 0664 |
|
| Stub.php | File | 1.35 KB | 0664 |
|