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 /** * FecShop file. * * @link http://www.fecshop.com/ * @copyright Copyright (c)..
Decoded Output download
<?php
/**
* FecShop file.
*
* @link http://www.fecshop.com/
* @copyright Copyright (c) 2016 FecShop Software LLC
* @license http://www.fecshop.com/license/
*/
namespace fecshoppp\console\modules\Order;
use fecshoppp\console\modules\ConsoleModule;
/**
* @author Terry Zhao <[email protected]>
* @since 1.0
*/
class Module extends ConsoleModule
{
public $blockNamespace;
public function init()
{
parent::init();
//
$nameSpace = __NAMESPACE__;
$this->controllerNamespace = $nameSpace . '\controllers';
$this->blockNamespace = $nameSpace . '\block';
}
}
?>
Did this file decode correctly?
Original Code
<?php
/**
* FecShop file.
*
* @link http://www.fecshop.com/
* @copyright Copyright (c) 2016 FecShop Software LLC
* @license http://www.fecshop.com/license/
*/
namespace fecshop\app\console\modules\Order;
use fecshop\app\console\modules\ConsoleModule;
/**
* @author Terry Zhao <[email protected]>
* @since 1.0
*/
class Module extends ConsoleModule
{
public $blockNamespace;
public function init()
{
parent::init();
//
$nameSpace = __NAMESPACE__;
$this->controllerNamespace = $nameSpace . '\\controllers';
$this->blockNamespace = $nameSpace . '\\block';
}
}
Function Calls
None |
Stats
MD5 | d522c065e92829f2623b15a0137819ee |
Eval Count | 0 |
Decode Time | 93 ms |