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 class ErrorController extends Yaf_Controller_Abstract { public function errorAc..

Decoded Output download

<?php
class ErrorController extends Yaf_Controller_Abstract {

    public function errorAction() {
        $exception = $this->getRequest()->getParam('exception');
        $this->_view->code = $exception->getCode();
        $this->_view->message = $exception->getMessage();
        $this->_view->trace = $exception->getTraceAsString();
    }
    
}
 ?>

Did this file decode correctly?

Original Code

<?php
class ErrorController extends Yaf_Controller_Abstract {

    public function errorAction() {
        $exception = $this->getRequest()->getParam('exception');
        $this->_view->code = $exception->getCode();
        $this->_view->message = $exception->getMessage();
        $this->_view->trace = $exception->getTraceAsString();
    }
    
}

Function Calls

None

Variables

None

Stats

MD5 9b7b2f96d34a9c0376606b9e6f31c18d
Eval Count 0
Decode Time 108 ms