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 Gene; /** * Controller * * @property \Gene\Db\Mysql $db * @property ..
Decoded Output download
<?php
namespace Gene;
/**
* Controller
*
* @property \Gene\Db\Mysql $db
* @property \Gene\Cache\Memcached $memcache
* @property \Gene\Cache\Redis $redis
* @property \Gene\Cache\Cache $cache
* @property \Gene\Validate $validate
* @property \Ext\Services\Rest $rest
*
* @author sasou<[email protected]>
* @version 3.0.5
*/
class Controller
{
/**
* __construct
*
* @return mixed
*/
public function __construct() {
}
/**
* get
*
* @param mixed $key key
* @param mixed $value value
* @return mixed
*/
public static function get($key, $value = null) {
}
/**
* request
*
* @param mixed $key key
* @param mixed $value value
* @return mixed
*/
public static function request($key = null, $value = null) {
}
/**
* post
*
* @param mixed $key key
* @param mixed $value value
* @return mixed
*/
public static function post($key = null, $value = null) {
}
/**
* cookie
*
* @param mixed $key key
* @param mixed $value value
* @return mixed
*/
public static function cookie($key = null, $value = null) {
}
/**
* files
*
* @param mixed $key key
* @param mixed $value value
* @return mixed
*/
public static function files($key = null, $value = null) {
}
/**
* server
*
* @param mixed $key key
* @param mixed $value value
* @return mixed
*/
public static function server($key = null, $value = null) {
}
/**
* env
*
* @param mixed $key key
* @param mixed $value value
* @return mixed
*/
public static function env($key = null, $value = null) {
}
/**
* isAjax
*
* @return mixed
*/
public static function isAjax() {
}
/**
* params
*
* @param mixed $key key
* @return mixed
*/
public static function params($key = null) {
}
/**
* getMethod
*
* @return mixed
*/
public static function getMethod() {
}
/**
* isGet
*
* @return mixed
*/
public static function isGet() {
}
/**
* isPost
*
* @return mixed
*/
public static function isPost() {
}
/**
* isPut
*
* @return mixed
*/
public static function isPut() {
}
/**
* isHead
*
* @return mixed
*/
public static function isHead() {
}
/**
* isOptions
*
* @return mixed
*/
public static function isOptions() {
}
/**
* isDelete
*
* @return mixed
*/
public static function isDelete() {
}
/**
* isCli
*
* @return mixed
*/
public static function isCli() {
}
/**
* redirect
*
* @param mixed $url url
* @param mixed $code code
* @return mixed
*/
public function redirect($url, $code = null) {
}
/**
* assign
*
* @param mixed $name
* @param mixed $value
* @return mixed
*/
public function assign($name, $value) {
}
/**
* display
*
* @param mixed $file file
* @param mixed $parent_file parent_file
* @return mixed
*/
public function display($file, $parent_file = null) {
}
/**
* displayExt
*
* @param mixed $file file
* @param mixed $parent_file parent_file
* @param mixed $isCompile isCompile
* @return mixed
*/
public function displayExt($file, $parent_file = null, $isCompile = null) {
}
/**
* contains
*
* @return mixed
*/
public static function contains() {
}
/**
* containsExt
*
* @return mixed
*/
public static function containsExt() {
}
/**
* success
*
* @param mixed $msg msg
* @param mixed $code code
* @return mixed
*/
public static function success($msg, $code = null) {
}
/**
* error
*
* @param mixed $msg msg
* @param mixed $code code
* @return mixed
*/
public static function error($msg, $code = null) {
}
/**
* data
*
* @param mixed $data data
* @param mixed $count count
* @param mixed $msg msg
* @param mixed $code code
* @return mixed
*/
public static function data($data, $count = 0, $msg = null, $code = null) {
}
/**
* json
*
* @param mixed $data data
* @param mixed $callback callback
* @param mixed $code code
* @return mixed
*/
public static function json($data, $callback = null, $code = null) {
}
/**
* __get
*
* @param mixed $name name
* @return mixed
*/
public function __get($name) {
}
/**
* __set
*
* @param mixed $name name
* @param mixed $value value
* @return mixed
*/
public function __set($name, $value) {
}
} ?>
Did this file decode correctly?
Original Code
<?php
namespace Gene;
/**
* Controller
*
* @property \Gene\Db\Mysql $db
* @property \Gene\Cache\Memcached $memcache
* @property \Gene\Cache\Redis $redis
* @property \Gene\Cache\Cache $cache
* @property \Gene\Validate $validate
* @property \Ext\Services\Rest $rest
*
* @author sasou<[email protected]>
* @version 3.0.5
*/
class Controller
{
/**
* __construct
*
* @return mixed
*/
public function __construct() {
}
/**
* get
*
* @param mixed $key key
* @param mixed $value value
* @return mixed
*/
public static function get($key, $value = null) {
}
/**
* request
*
* @param mixed $key key
* @param mixed $value value
* @return mixed
*/
public static function request($key = null, $value = null) {
}
/**
* post
*
* @param mixed $key key
* @param mixed $value value
* @return mixed
*/
public static function post($key = null, $value = null) {
}
/**
* cookie
*
* @param mixed $key key
* @param mixed $value value
* @return mixed
*/
public static function cookie($key = null, $value = null) {
}
/**
* files
*
* @param mixed $key key
* @param mixed $value value
* @return mixed
*/
public static function files($key = null, $value = null) {
}
/**
* server
*
* @param mixed $key key
* @param mixed $value value
* @return mixed
*/
public static function server($key = null, $value = null) {
}
/**
* env
*
* @param mixed $key key
* @param mixed $value value
* @return mixed
*/
public static function env($key = null, $value = null) {
}
/**
* isAjax
*
* @return mixed
*/
public static function isAjax() {
}
/**
* params
*
* @param mixed $key key
* @return mixed
*/
public static function params($key = null) {
}
/**
* getMethod
*
* @return mixed
*/
public static function getMethod() {
}
/**
* isGet
*
* @return mixed
*/
public static function isGet() {
}
/**
* isPost
*
* @return mixed
*/
public static function isPost() {
}
/**
* isPut
*
* @return mixed
*/
public static function isPut() {
}
/**
* isHead
*
* @return mixed
*/
public static function isHead() {
}
/**
* isOptions
*
* @return mixed
*/
public static function isOptions() {
}
/**
* isDelete
*
* @return mixed
*/
public static function isDelete() {
}
/**
* isCli
*
* @return mixed
*/
public static function isCli() {
}
/**
* redirect
*
* @param mixed $url url
* @param mixed $code code
* @return mixed
*/
public function redirect($url, $code = null) {
}
/**
* assign
*
* @param mixed $name
* @param mixed $value
* @return mixed
*/
public function assign($name, $value) {
}
/**
* display
*
* @param mixed $file file
* @param mixed $parent_file parent_file
* @return mixed
*/
public function display($file, $parent_file = null) {
}
/**
* displayExt
*
* @param mixed $file file
* @param mixed $parent_file parent_file
* @param mixed $isCompile isCompile
* @return mixed
*/
public function displayExt($file, $parent_file = null, $isCompile = null) {
}
/**
* contains
*
* @return mixed
*/
public static function contains() {
}
/**
* containsExt
*
* @return mixed
*/
public static function containsExt() {
}
/**
* success
*
* @param mixed $msg msg
* @param mixed $code code
* @return mixed
*/
public static function success($msg, $code = null) {
}
/**
* error
*
* @param mixed $msg msg
* @param mixed $code code
* @return mixed
*/
public static function error($msg, $code = null) {
}
/**
* data
*
* @param mixed $data data
* @param mixed $count count
* @param mixed $msg msg
* @param mixed $code code
* @return mixed
*/
public static function data($data, $count = 0, $msg = null, $code = null) {
}
/**
* json
*
* @param mixed $data data
* @param mixed $callback callback
* @param mixed $code code
* @return mixed
*/
public static function json($data, $callback = null, $code = null) {
}
/**
* __get
*
* @param mixed $name name
* @return mixed
*/
public function __get($name) {
}
/**
* __set
*
* @param mixed $name name
* @param mixed $value value
* @return mixed
*/
public function __set($name, $value) {
}
}
Function Calls
None |
Stats
MD5 | 2e48cb591dcf1d83dfff745be5f0fa7e |
Eval Count | 0 |
Decode Time | 114 ms |