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 /** * Yaf(3.0.7) * @author shixinke(http://www.shixinke.com) * @modified 2018/05/20 ..
Decoded Output download
<?php
/**
* Yaf(3.0.7)
* @author shixinke(http://www.shixinke.com)
* @modified 2018/05/20
*/
/**
*
*/
namespace Yaf;
abstract class Request_Abstract
{
/**
*http
*/
const SCHEME_HTTP = 'http';
/**
*https
*/
const SCHEME_HTTPS = 'https';
/**
* @var string $module
*
* @access public
*/
public $module;
/**
* @var string $controller
*
* @access public
*/
public $controller;
/**
* @var stirng $action
*
* @access public
*/
public $action;
/**
* @var string $method
* getMethod
* @access public
*/
public $method;
/**
* @var array $params
*
* @access protected
*/
protected $params = array();
/**
* @var string $language
* httpHTTP_ACCEPT_LANGUAGE
* @access protected
*/
protected $language;
/**
* @var Yaf_Exception $_exception
*
* @access protected
*/
protected $_exception;
/**
* @var string $_base_uri
* Base URIhttp or cli
* @access protected
*/
protected $_base_uri = '';
/**
* @var string $uri
* URIhttp
* @access protected
*/
protected $uri = '';
/**
* @var bool $dispatched
* 0
* @access protected
*/
protected $dispatched = false;
/**
* @var bool $routed
* 0
* @access protected
*/
protected $routed = false;
/**
*
*GET
* @example
* @return bool
*/
public function isGet(): bool
{
}
/**
*
*POST
* @example
* @return bool
*/
public function isPost(): bool
{
}
/**
*
*PUT
* @example
* @return bool
*/
public function isPut(): bool
{
}
/**
*
*HEAD
* @example
* @return bool
*/
public function isHead(): bool
{
}
/**
*
*Options
* @example
* @return bool
*/
public function isOptions(): bool
{
}
/**
*
*CLI
* @example
* @return bool
*/
public function isCli(): bool
{
}
/**
*
*AJAX
* @example
* @return bool
*/
public function isXmlHttpRequest(): bool
{
}
/**
*
*$_SERVER
* @example
* @param string $name
* @param mixed $default
* @return mixed
*/
public function getServer(string $name, $default)
{
}
/**
*
*$_ENV
* @example
* @param string $name
* @param string $default
* @return mixed
*/
public function getEnv(string $name, string $default)
{
}
/**
*
*
*Array
* @example
* @param string $name
* @param mixed $value
* @return
*/
public function setParam(string $name, $value)
{
}
/**
*
*
* @example
* @param string $name
* @param string $default
* @return
*/
public function getParam(string $name, string $default)
{
}
/**
*
*
* @example
* @return array|null
*/
public function getParams(): ?array
{
}
/**
*
*
* @example
* @return Yaf_Exception
*/
public function getException(): Yaf_Exception
{
}
/**
*
*
* @example
* @return string
*/
public function getModuleName(): string
{
}
/**
*
*
* @example
* @return string
*/
public function getControllerName(): string
{
}
/**
*
*
* @example
* @return string
*/
public function getActionName(): string
{
}
/**
*
*
* @example
* @param string $name
* @return
*/
public function setModuleName(string $name)
{
}
/**
*
*
* @example
* @param string $name
* @return
*/
public function setControllerName(string $name)
{
}
/**
*
*
* @example
* @param string $name
* @return
*/
public function setActionName(string $name)
{
}
/**
*
*
* @example
* @return string
*/
public function getMethod(): string
{
}
/**
*
*
* @example
* @return string
*/
public function getLanguage(): string
{
}
/**
*
*Base URI
* @example
* @param string $baseuri
* @return
*/
public function setBaseUri(string $baseuri)
{
}
/**
*
*Base URI
* @example
* @return string
*/
public function getBaseUri(): string
{
}
/**
*
*uri
* @example
* @return string
*/
public function getRequestUri(): string
{
}
/**
*
*URI
* @example
* @param string $uri uri
* @return
*/
public function setRequestUri(string $uri)
{
}
/**
*
*
* @example
* @return bool
*/
public function isDispatched(): bool
{
}
/**
*
*
* @example
* @return bool
*/
public function setDispatched(): bool
{
}
/**
*
*
* @example
* @return bool
*/
public function isRouted(): bool
{
}
/**
*
*
* @example
* @return bool
*/
public function setRouted(): bool
{
}
}
?>
Did this file decode correctly?
Original Code
<?php
/**
* Yaf(3.0.7)
* @author shixinke(http://www.shixinke.com)
* @modified 2018/05/20
*/
/**
*
*/
namespace Yaf;
abstract class Request_Abstract
{
/**
*http
*/
const SCHEME_HTTP = 'http';
/**
*https
*/
const SCHEME_HTTPS = 'https';
/**
* @var string $module
*
* @access public
*/
public $module;
/**
* @var string $controller
*
* @access public
*/
public $controller;
/**
* @var stirng $action
*
* @access public
*/
public $action;
/**
* @var string $method
* getMethod
* @access public
*/
public $method;
/**
* @var array $params
*
* @access protected
*/
protected $params = array();
/**
* @var string $language
* httpHTTP_ACCEPT_LANGUAGE
* @access protected
*/
protected $language;
/**
* @var Yaf_Exception $_exception
*
* @access protected
*/
protected $_exception;
/**
* @var string $_base_uri
* Base URIhttp or cli
* @access protected
*/
protected $_base_uri = '';
/**
* @var string $uri
* URIhttp
* @access protected
*/
protected $uri = '';
/**
* @var bool $dispatched
* 0
* @access protected
*/
protected $dispatched = false;
/**
* @var bool $routed
* 0
* @access protected
*/
protected $routed = false;
/**
*
*GET
* @example
* @return bool
*/
public function isGet(): bool
{
}
/**
*
*POST
* @example
* @return bool
*/
public function isPost(): bool
{
}
/**
*
*PUT
* @example
* @return bool
*/
public function isPut(): bool
{
}
/**
*
*HEAD
* @example
* @return bool
*/
public function isHead(): bool
{
}
/**
*
*Options
* @example
* @return bool
*/
public function isOptions(): bool
{
}
/**
*
*CLI
* @example
* @return bool
*/
public function isCli(): bool
{
}
/**
*
*AJAX
* @example
* @return bool
*/
public function isXmlHttpRequest(): bool
{
}
/**
*
*$_SERVER
* @example
* @param string $name
* @param mixed $default
* @return mixed
*/
public function getServer(string $name, $default)
{
}
/**
*
*$_ENV
* @example
* @param string $name
* @param string $default
* @return mixed
*/
public function getEnv(string $name, string $default)
{
}
/**
*
*
*Array
* @example
* @param string $name
* @param mixed $value
* @return
*/
public function setParam(string $name, $value)
{
}
/**
*
*
* @example
* @param string $name
* @param string $default
* @return
*/
public function getParam(string $name, string $default)
{
}
/**
*
*
* @example
* @return array|null
*/
public function getParams(): ?array
{
}
/**
*
*
* @example
* @return Yaf_Exception
*/
public function getException(): Yaf_Exception
{
}
/**
*
*
* @example
* @return string
*/
public function getModuleName(): string
{
}
/**
*
*
* @example
* @return string
*/
public function getControllerName(): string
{
}
/**
*
*
* @example
* @return string
*/
public function getActionName(): string
{
}
/**
*
*
* @example
* @param string $name
* @return
*/
public function setModuleName(string $name)
{
}
/**
*
*
* @example
* @param string $name
* @return
*/
public function setControllerName(string $name)
{
}
/**
*
*
* @example
* @param string $name
* @return
*/
public function setActionName(string $name)
{
}
/**
*
*
* @example
* @return string
*/
public function getMethod(): string
{
}
/**
*
*
* @example
* @return string
*/
public function getLanguage(): string
{
}
/**
*
*Base URI
* @example
* @param string $baseuri
* @return
*/
public function setBaseUri(string $baseuri)
{
}
/**
*
*Base URI
* @example
* @return string
*/
public function getBaseUri(): string
{
}
/**
*
*uri
* @example
* @return string
*/
public function getRequestUri(): string
{
}
/**
*
*URI
* @example
* @param string $uri uri
* @return
*/
public function setRequestUri(string $uri)
{
}
/**
*
*
* @example
* @return bool
*/
public function isDispatched(): bool
{
}
/**
*
*
* @example
* @return bool
*/
public function setDispatched(): bool
{
}
/**
*
*
* @example
* @return bool
*/
public function isRouted(): bool
{
}
/**
*
*
* @example
* @return bool
*/
public function setRouted(): bool
{
}
}
Function Calls
None |
Stats
MD5 | b56b58d009e9e3f88e562b98407f9d44 |
Eval Count | 0 |
Decode Time | 91 ms |