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 final class ConduitPingConduitAPIMethod extends ConduitAPIMethod { public functi..

Decoded Output download

<?php

final class ConduitPingConduitAPIMethod extends ConduitAPIMethod {

  public function getAPIMethodName() {
    return 'conduit.ping';
  }

  public function shouldRequireAuthentication() {
    return false;
  }

  public function getMethodDescription() {
    return pht('Basic ping for monitoring or a health-check.');
  }

  protected function defineParamTypes() {
    return array();
  }

  protected function defineReturnType() {
    return 'string';
  }

  protected function execute(ConduitAPIRequest $request) {
    return php_uname('n');
  }

}
 ?>

Did this file decode correctly?

Original Code

<?php

final class ConduitPingConduitAPIMethod extends ConduitAPIMethod {

  public function getAPIMethodName() {
    return 'conduit.ping';
  }

  public function shouldRequireAuthentication() {
    return false;
  }

  public function getMethodDescription() {
    return pht('Basic ping for monitoring or a health-check.');
  }

  protected function defineParamTypes() {
    return array();
  }

  protected function defineReturnType() {
    return 'string';
  }

  protected function execute(ConduitAPIRequest $request) {
    return php_uname('n');
  }

}

Function Calls

None

Variables

None

Stats

MD5 c25a0276f53a228da0b902562952e112
Eval Count 0
Decode Time 87 ms