Find this useful? Enter your email to receive occasional updates for securing PHP code.
Signing you up...
Thank you for signing up!
PHP Decode
<?php namespace Typecho; /** * * * @category typecho * @package Config * @copyrigh..
Decoded Output download
<?php
namespace Typecho;
/**
*
*
* @category typecho
* @package Config
* @copyright Copyright (c) 2008 Typecho team (http://www.typecho.org)
* @license GNU General Public License 2.0
*/
class Config extends \stdClass implements \Iterator, \ArrayAccess
{
/**
*
*
* @access private
* @var array
*/
private array $currentConfig = [];
/**
*
*
* @access public
* @param array|string|null $config
*/
public function __construct($config = [])
{
/** */
$this->setDefault($config);
}
/**
*
*
* @access public
*
* @param array|string|null $config
*
* @return Config
*/
public static function factory($config = []): Config
{
return new self($config);
}
/**
*
*
* @access public
*
* @param mixed $config
* @param boolean $replace
*
* @return void
*/
public function setDefault($config, bool $replace = false)
{
if (empty($config)) {
return;
}
/** */
if (is_string($config)) {
parse_str($config, $params);
} else {
$params = $config;
}
/** */
foreach ($params as $name => $value) {
if ($replace || !array_key_exists($name, $this->currentConfig)) {
$this->currentConfig[$name] = $value;
}
}
}
/**
* @return bool
*/
public function isEmpty(): bool
{
return empty($this->currentConfig);
}
/**
*
*
* @access public
* @return void
*/
public function rewind(): void
{
reset($this->currentConfig);
}
/**
*
*
* @access public
* @return mixed
*/
#[\ReturnTypeWillChange]
public function current()
{
return current($this->currentConfig);
}
/**
*
*
* @access public
* @return void
*/
public function next(): void
{
next($this->currentConfig);
}
/**
*
*
* @access public
* @return mixed
*/
#[\ReturnTypeWillChange]
public function key()
{
return key($this->currentConfig);
}
/**
*
*
* @access public
* @return boolean
*/
public function valid(): bool
{
return false !== $this->current();
}
/**
*
*
* @access public
* @param string $name
* @return mixed
*/
public function __get(string $name)
{
return $this->offsetGet($name);
}
/**
*
*
* @access public
* @param string $name
* @param mixed $value
* @return void
*/
public function __set(string $name, $value)
{
$this->offsetSet($name, $value);
}
/**
*
*
* @access public
* @param string $name
* @param array|null $args
* @return void
*/
public function __call(string $name, ?array $args)
{
echo $this->currentConfig[$name];
}
/**
*
*
* @access public
* @param string $name
* @return boolean
*/
public function __isSet(string $name): bool
{
return $this->offsetExists($name);
}
/**
* ,
*
* @access public
* @return string
*/
public function __toString(): string
{
return json_encode($this->currentConfig);
}
/**
* @return array
*/
public function toArray(): array
{
return $this->currentConfig;
}
/**
* @param mixed $offset
* @return bool
*/
public function offsetExists($offset): bool
{
return isset($this->currentConfig[$offset]);
}
/**
* @param mixed $offset
* @return mixed
*/
#[\ReturnTypeWillChange]
public function offsetGet($offset)
{
return $this->currentConfig[$offset] ?? null;
}
/**
* @param mixed $offset
* @param mixed $value
*/
public function offsetSet($offset, $value): void
{
$this->currentConfig[$offset] = $value;
}
/**
* @param mixed $offset
*/
public function offsetUnset($offset): void
{
unset($this->currentConfig[$offset]);
}
}
?>
Did this file decode correctly?
Original Code
<?php
namespace Typecho;
/**
*
*
* @category typecho
* @package Config
* @copyright Copyright (c) 2008 Typecho team (http://www.typecho.org)
* @license GNU General Public License 2.0
*/
class Config extends \stdClass implements \Iterator, \ArrayAccess
{
/**
*
*
* @access private
* @var array
*/
private array $currentConfig = [];
/**
*
*
* @access public
* @param array|string|null $config
*/
public function __construct($config = [])
{
/** */
$this->setDefault($config);
}
/**
*
*
* @access public
*
* @param array|string|null $config
*
* @return Config
*/
public static function factory($config = []): Config
{
return new self($config);
}
/**
*
*
* @access public
*
* @param mixed $config
* @param boolean $replace
*
* @return void
*/
public function setDefault($config, bool $replace = false)
{
if (empty($config)) {
return;
}
/** */
if (is_string($config)) {
parse_str($config, $params);
} else {
$params = $config;
}
/** */
foreach ($params as $name => $value) {
if ($replace || !array_key_exists($name, $this->currentConfig)) {
$this->currentConfig[$name] = $value;
}
}
}
/**
* @return bool
*/
public function isEmpty(): bool
{
return empty($this->currentConfig);
}
/**
*
*
* @access public
* @return void
*/
public function rewind(): void
{
reset($this->currentConfig);
}
/**
*
*
* @access public
* @return mixed
*/
#[\ReturnTypeWillChange]
public function current()
{
return current($this->currentConfig);
}
/**
*
*
* @access public
* @return void
*/
public function next(): void
{
next($this->currentConfig);
}
/**
*
*
* @access public
* @return mixed
*/
#[\ReturnTypeWillChange]
public function key()
{
return key($this->currentConfig);
}
/**
*
*
* @access public
* @return boolean
*/
public function valid(): bool
{
return false !== $this->current();
}
/**
*
*
* @access public
* @param string $name
* @return mixed
*/
public function __get(string $name)
{
return $this->offsetGet($name);
}
/**
*
*
* @access public
* @param string $name
* @param mixed $value
* @return void
*/
public function __set(string $name, $value)
{
$this->offsetSet($name, $value);
}
/**
*
*
* @access public
* @param string $name
* @param array|null $args
* @return void
*/
public function __call(string $name, ?array $args)
{
echo $this->currentConfig[$name];
}
/**
*
*
* @access public
* @param string $name
* @return boolean
*/
public function __isSet(string $name): bool
{
return $this->offsetExists($name);
}
/**
* ,
*
* @access public
* @return string
*/
public function __toString(): string
{
return json_encode($this->currentConfig);
}
/**
* @return array
*/
public function toArray(): array
{
return $this->currentConfig;
}
/**
* @param mixed $offset
* @return bool
*/
public function offsetExists($offset): bool
{
return isset($this->currentConfig[$offset]);
}
/**
* @param mixed $offset
* @return mixed
*/
#[\ReturnTypeWillChange]
public function offsetGet($offset)
{
return $this->currentConfig[$offset] ?? null;
}
/**
* @param mixed $offset
* @param mixed $value
*/
public function offsetSet($offset, $value): void
{
$this->currentConfig[$offset] = $value;
}
/**
* @param mixed $offset
*/
public function offsetUnset($offset): void
{
unset($this->currentConfig[$offset]);
}
}
Function Calls
None |
Stats
MD5 | e0fcd7fd0a61f4db9c4b47c4476f9bc0 |
Eval Count | 0 |
Decode Time | 86 ms |