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 abstract class HeraldGroup extends Phobject { abstract public function getGroupL..

Decoded Output download

<?php

abstract class HeraldGroup extends Phobject {

  abstract public function getGroupLabel();

  protected function getGroupOrder() {
    return 1000;
  }

  public function getSortKey() {
    return sprintf('A%08d%s', $this->getGroupOrder(), $this->getGroupLabel());
  }

}
 ?>

Did this file decode correctly?

Original Code

<?php

abstract class HeraldGroup extends Phobject {

  abstract public function getGroupLabel();

  protected function getGroupOrder() {
    return 1000;
  }

  public function getSortKey() {
    return sprintf('A%08d%s', $this->getGroupOrder(), $this->getGroupLabel());
  }

}

Function Calls

None

Variables

None

Stats

MD5 7d3ec17b8cd21572677197bd004a8e61
Eval Count 0
Decode Time 108 ms